/* ================================================================
   REDIRECCIÓN DE PAGO
   Variables compartidas: variables.css
   ================================================================ */

html,
body {
    height: 100%;
    margin: 0 20px;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-base) !important;
    text-align: center;
}

/* Logos y puntos animados */
#logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

#logos img {
    width: 150px;
}

#logos > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#logos > div > div {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-black);
    opacity: 0.2;
    animation: flowDots 1.2s infinite ease-in-out;
}

#logos > div > div:nth-child(2) {
    animation-delay: 0.2s;
}

#logos > div > div:nth-child(3) {
    animation-delay: 0.4s;
}

@media (max-width: 720px) {
    #logos {
        flex-direction: column;
        gap: 4.5rem;
    }

    #logos > div {
        flex-direction: column;
        gap: 3.5rem;
    }

    #logos > div > div {
        width: 20px;
        height: 20px;
    }
}

@keyframes flowDots {
    0%,
    80%,
    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    40% {
        opacity: 1;
        transform: scale(1);
    }
}
