@import "https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap";

::-webkit-scrollbar {
    height: 5px;
    width: 5px;
    background: #8d8daa;
}

body {
    min-height: 100vh;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    display: flex;
}


button.close:hover {
    color: inherit;
}

#upBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 999;
    background-color: #F9F9C5;
    color: var(--dark);
    width: 48px;
    height: 48px;
    padding: 13px;
    border-radius: 17px;
    font-size: 18px;
    cursor: pointer;
}

.confirm-btn-sweet {
    background-color: #100F0F !important;
    color: var(--text-color) !important;
}

/*SPINNER */
.loader {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: #191919;
    position: fixed;
    display: block;
    z-index: 999;
}

.loader>div {
    height: 53px;
    width: 53px;
    border: 12px solid var(--secondary);
    border-top-color: var(--text-color);
    position: fixed;
    margin: auto;
    top: 50%;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    animation: spinner 1s ease infinite;
    margin-top: 0px;
    justify-content: center;
    display: flex;
}

@media (min-width: 768px) {
    .loader>div {
        height: 82px;
        width: 82px;
        border: 15px solid var(--secondary);
        border-top-color: var(--text-color);
    }
}

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