/***** OVERLAYER ******/
#overlayer {
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
}

/****** LOADER ******/
.loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px; /* Ajusta la altura según tus necesidades */
}

.sura-loader {
    width: 100px;
    height: 100px;
    position: relative;
    transform: none;
    z-index: 100;
}

    .sura-loader div {
        position: absolute;
        border: 4px solid #00AEC7;
        opacity: 1;
        border-radius: 50%;
        animation: sura-loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .sura-loader div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes sura-loader {
    0% {
        top: 50px;
        left: 50px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}
