/*----------------------------------------------------------
Main Stylesheet for Cheat
Version: 1.0
-----------------------------------------------------------*/

:root {
    --color-primary: #3167EB;
    --color-primary-text: #3167EB;
    --color-secondary: #3167EB;
    --color-hover: #3167EB;
    --color-focus: #3167EB;
}

/* DESIGN TEXT */
.bold {
    font-weight: 600;
}
.bold-700 {
    font-weight: 700;
}
.fw-400 {
    font-weight: 400;
}
.italic {
    font-style: italic;
}
.uppercase {
    text-transform: uppercase;
}
.underline {
    text-decoration: underline;
}

.fs-10 {
    font-size: 10px;
}
.fs-12 {
    font-size: 12px;
}
.fs-14 {
    font-size: 14px;
}
.fs-16 {
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fs-22 {
    font-size: 22px;
}
.fs-24 {
    font-size: 24px;
}
.fs-26 {
    font-size: 26px;
}
.fs-28 {
    font-size: 28px;
}
.fs-30 {
    font-size: 30px;
}
.fs-32 {
    font-size: 32px;
}
.fs-34 {
    font-size: 34px;
}
.fs-36 {
    font-size: 36px;
}
.fs-38 {
    font-size: 38px;
}
.fs-40 {
    font-size: 40px;
}
.fs-42 {
    font-size: 42px;
}
.fs-44 {
    font-size: 44px;
}

/* ESPACEMENT */
.no-margin-impt {
    margin: 0 !important;
}
.no-padding-impt {
    padding: 0 !important;
}
.no-margin {
    margin: 0;
}
.no-padding {
    padding: 0;
}
.no-margin-top {
    margin-top: 0 !important;
}
.no-margin-bottom {
    margin-bottom: 0 !important;
}
.no-margin-left {
    margin-left: 0 !important;
}
.no-margin-right {
    margin-right: 0 !important;
}

/* POSITIONNEMENT */
.d-none {
    display: none;
}
.d-grid {
    display: grid !important;
}
.d-flex {
    display: flex !important;
}
.flex-center {
    display: flex !important;
    justify-content: center;
    align-items: center;
    align-self: center;
}
.flex-end {
    display: flex;
    justify-content: flex-end;
}
.flex-start {
    display: flex;
    justify-content: flex-start;
}
.flex-between {
    display: flex;
    justify-content: space-between;
}
.flex-around {
    display: flex;
    justify-content: space-around;
}
.flex-evenly {
    display: flex;
    justify-content: space-evenly;
}
.flex-items-center {
    display: flex;
    align-items: center;
}
.self-center {
    display: flex;
    align-self: center;
}
.self-start {
    display: flex;
    align-self: flex-start;
}
.self-end {
    display: flex;
    align-self: flex-end;
}

.text-start {
    text-align: start;
}
.text-end {
    text-align: end;
}
.text-justify {
    text-align: justify;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}

.text-male {
    color: #029EF6;
}
.text-female {
    color: #E547A1;
}
.text-disable {
    color: #74788d!important;
    opacity: 0.8;
    cursor: default!important;
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.w-100 {
    width: 100%;
}
.w-50 {
    width: 50%;
}
.w-30 {
    width: 30%;
}

.cursor-pointer {
    cursor: pointer;
}

/* .badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
} */

.alert-margin-i,
.alert i {
    margin-right: 10px;
}
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.alert-heading {
    color: inherit;
}
.alert-link {
    font-weight: 700;
    transition: all .4s ease;
}
.alert-link:hover {
    opacity: 0.6;
    transition: all .4s ease;
}

.alert-success {
    background-color: #e0ffef;
    color: #07be6e;
    border-color: #07be6e;
}
.alert-success hr {
    border-top-color: #e0ffef;
}
.alert-success .alert-link {
    color: #07be6e;
}

.alert-info {
    background-color: #e0f2ff;
    color: #4f8dca;
    border-color: #4f8dca;
}
.alert-info hr {
    border-top-color: #e0f2ff;
}
.alert-info .alert-link {
    color: #4f8dca;
}

.alert-warning {
    background-color: #fef6e3;
    color: #fda600;
    border-color: #fda600;
}
.alert-warning hr {
    border-top-color: #fef6e3;
}
.alert-warning .alert-link {
    color: #fda600;
}

.alert-danger {
    background-color: #ffebea;
    color: #f9423c;
    border-color: #f9423c;
}
.alert-danger hr {
    border-top-color: #ffebea;
}
.alert-danger .alert-link {
    color: #f9423c;
}

.alert-brand {
    background-color: #eaedff;
    color: #374EAE;
    border-color: #374EAE;
}
.alert-brand hr {
    border-top-color: #eaedff;
}
.alert-brand .alert-link {
    color: #374EAE;
}

.alert-light {
    background-color: #fefefe;
    color: #818182;
    border-color: #818182;
}
.alert-light hr {
    border-top-color: #fefefe;
}
.alert-light .alert-link {
    color: #818182;
}

.alert-dark {
    background-color: #d6d6d6;
    color: #202020;
    border-color: #202020;
}
.alert-dark hr {
    border-top-color: #d6d6d6;
}
.alert-dark .alert-link {
    color: #202020;
}

/* TO TOP */
.to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    transition: .3s ease-in-out;
    width: 50px;
    border-radius: 100%;
    line-height: 50px;
    text-align: center;
    color: #FAFAFA;
    background-color: #242B3A; 
}
.to-top:hover {
    background-color: #FFC418;
    color: #FAFAFA; 
}
.to-top.active {
    opacity: 1;
    pointer-events: auto; 
}

/* PRELOADER */
#preloader-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #FFF;
    transition: 0.3s;
}
#preloader-wrap.loaded {
    visibility: hidden;
    opacity: 0;
}

.preloader-table {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #FFF;
    transition: 0.3s;

    min-height: 300px;
}
.preloader-table.loaded {
    visibility: hidden;
    opacity: 0;
}

.p-spinner-3 {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}
.p-spinner-3 > div {
    background-color: #3ABEC5;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: ms-stretchdelay 1.2s infinite ease-in-out;
    animation: ms-stretchdelay 1.2s infinite ease-in-out;
}

.p-spinner-3 .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.p-spinner-3 .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}
.p-spinner-3 .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.p-spinner-3 .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes ms-stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
    20% { -webkit-transform: scaleY(1.0) }
}
@keyframes ms-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }  20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

.p-spinner-10 {
    -webkit-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
}
.p-spinner-10 .ms-cube{
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.p-spinner-10 .ms-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3ABEC5;
    -webkit-animation: ms-foldCubeAngle 2.4s infinite linear both;
            animation: ms-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
        -ms-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
}
.p-spinner-10 .ms-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
            transform: scale(1.1) rotateZ(90deg);
}
.p-spinner-10 .ms-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
            transform: scale(1.1) rotateZ(180deg);
}
.p-spinner-10 .ms-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
            transform: scale(1.1) rotateZ(270deg);
}
.p-spinner-10 .ms-cube2:before {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
}
.p-spinner-10 .ms-cube3:before {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
}
.p-spinner-10 .ms-cube4:before {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
}

@-webkit-keyframes ms-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
                transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    } 25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
                transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    } 90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
                transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}
@keyframes ms-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
                transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    } 25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
                transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    } 90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
                transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

/* OTHERS */
.page-title-right {
    align-self: flex-start;
}

.orders-custom label {
    font-weight: 500;
}
.orders-custom label select {
    background-color: #fff;
    border: 1px solid #e2e7f1;
    border-radius: 0.3rem;

    font-weight: 400;
    line-height: 1.2;
    color: #4b4b5a;
    vertical-align: middle;

    width: auto;
    display: inline-block;

    margin: 0 .25rem;

    height: calc(1.5em + .5rem + 2px);
    padding: .25rem 1rem .25rem .5rem;
    font-size: .75rem;
}
.orders-custom label select:focus {
    border-color: #3ABEC5;
    outline: 0;
}

.lh-12 {
    line-height: 1.2;
}

.filter-custom label input {
    margin-left: 0.5em;
    display: inline-block;
    width: auto;

    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: .75rem;
    line-height: 1.2;
    border-radius: 0.2rem;

    color: #4b4b5a;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e2e7f1;
}
.filter-custom label input:focus {
    color: #4b4b5a;
    background-color: #fff;
    border-color: #3ABEC5;
    outline: 0;
}

.paginate-custom {
    margin: 0;
    white-space: nowrap;
    text-align: right;
}
.paginate-custom .paginate_button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 2.5em;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;

    position: relative;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #3ABEC5;
    background-color: #fff;
    border: 1px solid #e2e7f1;

    border-radius: 30px !important;
    margin: 0 3px;
    border: none;
}
.paginate-custom .paginate_button:hover {
    z-index: 2;
    color: #0a29f5;
    text-decoration: none;
    background-color: #f6f6f7;
    border-color: #e2e7f1;
}
.paginate-custom .paginate_button.active {
    z-index: 1;
    color: #fff;
    background-color: #3ABEC5;
    border-color: #3ABEC5;
}

.sn-active {
    color: #3ABEC5;
}
.sn-inactive {
    color: grey !important;
    opacity: 0.5;
}

.a-btn {
    cursor: pointer;
    margin-right: 0.5rem !important;
    font-size: 20px;
}
.a-btn i {
    color: inherit;
    transition: all ease .3s;
}
.a-btn:hover i {
    opacity: .5;
}

.text-stat {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.av-shadow {
    box-shadow: 3px 6px 25px 0 rgb(0 0 0 / 10%) !important;
}

.icon-logout {
    color: #555b6d;
}
.icon-logout:hover,
.icon-logout:focus {
    color: #555b6d;
    opacity: 0.8;
}

.va-middle {
    vertical-align: middle !important;
}

.logo-cover {
    max-height: 50px;
    object-fit: cover;
}

.apex-charts text {
    fill: #adb5bd !important;
    color: #adb5bd !important;
}

.shape-circle {
    width: 18px;
    height: 18px;
    border-radius: 20px;
    border: grey 1px solid;
    background-color: black;
}

.content-vendors {
    max-height: 450px;
    /* overflow-y: scroll; */
    overflow-x: hidden;
}