/*SCROLLBAR*/
/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: orange;
}



/*APP*/
#app {
    font-family: "Trebuchet Ms";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
}

body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}


#space {
    margin-top: 32px;
}

#leftMenuBack {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

/*--------------------
  Preloader
  ---------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloaderBox {
    width: max-content;
    height: max-content;
}

#preloaderBox img {
    width: 108px;
}

.preloader-lds-ellipsis {
    display: inline-block;
    position: relative;
    margin-left: 14px;
    width: 80px;
    height: 80px;
}

.preloader-lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #FF6600;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.preloader-lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.preloader-lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.preloader-lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.preloader-lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}








/*************************************
  
  preloader for wait
  
*************************************/
#waitLoader {
    display: none;
    /**/
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 15000;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

#waitLoader[show] {
    display: flex;
}

#waitLoaderBox {
    margin-top: -104px;
    min-width: 128px;
    max-width: 512px;
    width: max-content;
    min-height: 80px;
    padding: 0 20px;
    background-color: #111a2bbd;
    border-radius: 16px;
}

#waitLoaderLabel {
    display: none;
    margin-top: 8px;
    color: #FF6600;
    font-size: 16px;
    font-weight: 400;
    height: max-content;
}

#waitLoaderLabel[show] {
    display: block;
}

#waitLoaderBar {
    display: flex;
    justify-content: center;
    align-items: center;
}



/*---------------------------------
POPUP MESSAGE BOX
---------------------------------*/
#popupBack {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

#popupBack[open] {
    display: block;
}

#popup {
    opacity: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    position: fixed;
    z-index: 201;
    max-width: 768px;
    width: max-content;
    max-height: 100vh;
    float: left;
    background-color: #f2fbff;
    /*border-radius: 16px;*/
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.35);
    padding: 8px 16px 16px 16px;
    transition: all 0.35s ease;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

#popupTitle {
    font-size: 32px;
    font-weight: 600;
}

#popupCloseBtn {
    float: right;
    cursor: pointer;
    color: #aaa;
}

#popupCloseBtn:hover {
    color: #c77;
}

#popupBody {
    padding: 0 56px;
    margin-top: 16px;
    margin-bottom: 16px;
    /* float: left; */
}

#popupBody ul {
    text-align: left;
    font-weight: bold;
}

#popupBtns button {
    width: max-content !important;
    border: none;
    border-radius: 4px;
    background-color: #111a2b;
    padding: 5px 20px;
    margin-right: 8px;
    color: white;
    font-weight: 500;
}

#popupBtns button:hover {
    background-color: #152138;
}

#popupBtns button:first-child {
    /* background-color: #9cf; */
}

#popupBtns button:first-child:hover {
    /* background-color: #69c; */
}

#popupBtns button:last-child {
    margin-right: 0;
    /* background-color: #faa; */
}

#popupBtns button:last-child:hover {
    /* background-color: #c77; */
}


@media only screen and (max-width:768px) {
    #popup {
        max-width: 100%;
    }
}


@media only screen and (max-width:512px) {
    #popup {
        padding: 10px !important;
    }

    #popupBody {
        padding: 0 0 !important;
    }

    #popupBody br {
        display: none !important;
    }
}




/* JOIN WHATSAPP GROUP */
.join_wha_group {
    background-color: #47b904 !important;
    border-radius: 48px !important;
    padding: 16px 12px !important;
    border: solid 5px #a4da84 !important;
    color: white !important;
    font-weight: bold;
}