body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
}

body {
    -webkit-user-select: none;
    /* Disables text selection */
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    /* Disables callout on iOS */
}


.fancy-scrollbar::-webkit-scrollbar {
    height: 4px;
    width: 4px;
}

.fancy-scrollbar::-webkit-scrollbar-track {
    background-color: transparent;
}

.fancy-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
}


#phone {
    background-color: rgb(var(--theme-background));
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px;
    height: 100%;
    width: 393px;
    min-height: 100vh;
    margin: 0 auto;
    position: relative;
}

#main-wrapper {
    height: 100%;
    overflow: auto;
}


@media(max-width: 500px) {
    body {
        overflow: auto;
    }

    #phone {
        height: auto;
        width: 100%;
        margin: 0px auto;
    }

    #main-wrapper {
        height: auto;
        padding-bottom: 4rem;
    }
}

@media (min-width: 501px) and (max-width: 1024px) {
    body {
        overflow: auto;
    }

    #phone {
        height: 100%;
        width: 100%;
        margin: 0px auto;
    }



    #main-wrapper {
        height: auto;
        padding-bottom: 4rem;
    }

}

.center-body {
    opacity: 1;
    background: #ecefffc2;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    position: fixed;
    justify-content: center;
    align-items: center;
    display: flex;
}

.loader-circle-2 {
    position: relative;
    width: 70px;
    height: 70px;
    display: inline-block;
}

.loader-circle-2:before,
.loader-circle-2:after {
    content: "";
    display: block;
    position: absolute;
    border-width: 5px;
    border-style: solid;
    border-radius: 50%;
}

.loader-circle-2:before {
    width: 70px;
    height: 70px;
    border-bottom-color: #009688;
    border-right-color: #009688;
    border-top-color: transparent;
    border-left-color: transparent;
    animation: loader-circle-2-animation-2 1s linear infinite;
}

.loader-circle-2:after {
    width: 40px;
    height: 40px;
    border-bottom-color: #e91e63;
    border-right-color: #e91e63;
    border-top-color: transparent;
    border-left-color: transparent;
    top: 22%;
    left: 22%;
    animation: loader-circle-2-animation 0.85s linear infinite;
}

@keyframes loader-circle-2-animation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes loader-circle-2-animation-2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 999999;
    left: 50%;
    bottom: 30px;
    margin: 0 auto;
    transform: translate(-50%, -50%);
}


#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}


@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

select {
    -webkit-appearance: none;
    background: url('../index_files/arrow.png') no-repeat center right 10px;
    border: 1px solid #ced4da;
}