/*-- PRECARGA REDI --*/

@keyframes precargaFondo {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: var(--fondoPattern--tamano) 0;
    }
}


@keyframes precargaImg {
    0% {
        transform: rotate(0deg) scale(1);
    }

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

@keyframes precargaTexto {
    0% {
        opacity: 0;
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }

    40%,
    60% {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    100% {
        opacity: 0;
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
}

.precarga {
    --fondoPattern--tamano: 180px;
    --anchoMarco: 15px;
    height: 100vh;
    width: 100%;
    background-color: #f4f2ee;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 1;
    /* border: 5px solid #005833; */
    animation: precargaFondo 3s linear infinite;
    z-index: 99;
}

.precarga--invisible {
    border-width: 0;
    animation: precargaBackdrop 0.8s forwards;
    display: none;
}

.precarga__marca {
    width: 150px;
    /* animation: precargaImg 1.4s infinite linear; */
}

.precarga__texto {
    margin-top: 20px;
    color: #005833;
    font-size: 20px;
    animation: precargaTexto 1.4s infinite linear;
}