.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    width: 100px;
    height: 40px;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 5px;
    background-color: #333;
    border-radius: 50%;
    animation: blink 1s infinite ease-in-out;
}

/* Анимация для точек */
@keyframes blink {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* Разные задержки для каждой точки */
.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}