/* OUT */
/* @keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
} */

/* Apply the animation to the element you want to animate */
/* .animated-element {
    animation: fadeOutLeftBig 1s ease;
    height: 100vh;
    background-color: white;
    position: relative;
} */

.loading-background {
    color: #fff;
    display: none;
    position: absolute;
    z-index: 999999999;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.loading-background.active .modal-drop {
    transform-origin: 50%;
    transform: scale(1);
}


.modal-drop {
    background: var(--clr-less-dark);
    border-radius: 50%;
    width: 150vh;
    height: 150vh;
    position: absolute;
    margin-left: -75vh;
    margin-top: -75vh;
    transition: transform 2s cubic-bezier(0.25, 1, 0.6, 1), transform-origin 0s;
    transform: scale(0.001);
    transform-origin: 0 0;
}

/* OUT */

/* IN */

.bg-start {
    width: 100vw;
    height: 100vh;
    position: fixed;
    /* Changed to fixed for full-screen effect */
    top: 0;
    left: 0;
    background-color: var(--clr-less-dark);
    z-index: 9999;
    animation: fadeInOut 0.5s ease forwards;
    /* Adjust the duration as per your requirement */
}

@keyframes fadeInOut {
    0% {
        opacity: 1;
        transform: translate(0, 0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(0, 100%);
        display: none;
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;

    }

    100% {
        opacity: 1;

    }
}

.animate-in-page {
    opacity: 0;
    animation: fadeInLeftBig 1s ease forwards;
    animation-delay: 0.5s;
}

/* IN */

/* LOADING */

body {
    /* overflow-y: hidden; */
    height: 100vh;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 11111;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    animation: loadingFadeOut 0.5s ease forwards;
    animation-delay: 1s;
}

.loading-overlay .box {
    position: absolute;
    width: 290px;
    height: 300px;
    z-index: 2;
    top: 30%;
    left: 70%;
    right: 0;
    background-color: #6aaddf;
    animation: moveLoading 1.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite forwards;
}

/* .arrow-down {
    width: 100%;
    top: 79px;
    left: 246px;
    z-index: 10;
    position: absolute;
} */

@keyframes moveLoading {
    0% {
        left: 70%;
    }

    100% {
        left: -25%;
    }
}

@keyframes loadingFadeOut {
    0% {
        opacity: 1;
        top: 0;
    }

    100% {
        opacity: 0;
        top: -100%;
    }
}


/* LOADING */
