@keyframes loading-dot {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }

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

.loading-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: hsl(var(--st-brand));
    animation: loading-dot 1.4s ease-in-out infinite;
}