@keyframes type-animation {
    50% {
        @apply opacity-100;
    }
}

.typing-dots {
    span {
        @apply opacity-0;
        &:nth-child(1) {
            animation: 1s type-animation infinite .33333s;
        }
        &:nth-child(2) {
            animation: 1s type-animation infinite .66666s;
        }
        &:nth-child(3) {
            animation: 1s type-animation infinite .99999s;
        }
    }
}