﻿.loaderCuerpo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.loader {
    position: relative;
    width: 120px; /* Ajusta el ancho total del loader */
}

.circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid black; /* Borde negro */
    animation: changeColor 1s linear infinite;
}

@keyframes changeColor {
    0%, 20%, 40%, 100% {
        background-color: transparent;
    }

    50%, 80% {
        background-color: blue;
    }
}

.circle:nth-child(1) {
    top: 30px;
    left: 0;
    animation-delay: 0s;
}

.circle:nth-child(2) {
    top: 0px;
    left: 20px;
    animation-delay: 0.2s;
}

.circle:nth-child(3) {
    top: 30px;
    left: 40px;
    animation-delay: 0.4s;
}

.circle:nth-child(4) {
    top: 0px;
    left: 60px;
    animation-delay: 0.6s;
}

.circle:nth-child(5) {
    top: 30px;
    left: 80px;
    animation-delay: 0.8s;
}
