.page-loading-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: whitesmoke;
    display: grid;
    place-items: center;
}

.page-loading {
    width: 80px;
    height: 80px;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 0.3rem;
    transform: rotate(-45deg);
}

.page-loading .square {
    background-color: rgba(136, 136, 136, 0.9);
    display: grid;
    place-items: center;
    border-radius: 5px;
    animation: load 1.6s ease infinite;
}

@keyframes load {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0);
        background-color: var(--color);
    }
    100% {
        transform: scale(1);
    }
}

.page-loading .one {
    --color: magenta;
}

.page-loading .two {
    animation-delay: 0.1s;
    --color: lime;
}


.page-loading .three {
    animation-delay: 0.2s;
    --color: blue;
}


.page-loading .four {
    animation-delay: 0.3s;
    --color: yellow;
}


.page-loading .five {
    animation-delay: 0.4s;
    --color: orange;
}

img.logo {
    height: 40px !important;
}

img.table-img {
    height: 7vh;
}

img.table-img.avatar {
    border-radius: 50% !important;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin-bottom: 0;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin: 0;
    overflow: hidden;
    opacity: 0;
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: none;
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 2.25rem;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 0.25rem 0.25rem 0;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
    content: "Browse";
}

@keyframes logo-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.chart {

}

.datatable-btn {
    padding: 2px 10px !important;
    font-weight: 900 !important;
    font-size: 1.3em !important;
}
.sort-handle{
    cursor: move;
}
.table td p.estameted-revenue{
    font-weight: bold;
    color: #007600;
    font-size: 13px;
    margin-top: 5px;
}