﻿.dot-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* or whatever height you want */
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    display: inline-block;
    border-radius: 50%;
    animation: bounce 1s infinite ease-in-out;
}

.red {
    background-color: red;
    animation-delay: 0s;
}

.yellow {
    background-color: orange;
    animation-delay: 0.2s;
}

.green {
    background-color: green;
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}
