.ati-icon {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}
.ati-animate-fade {
    animation: ati-fade 2.5s linear infinite;
}
@keyframes ati-fade {
    50% {
        opacity: var(--fa-fade-opacity,.4);
    }
}

/* Spinning Animation */
.ati-animate-spin {
    animation: ati-spin 3s linear infinite;
}

@keyframes ati-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

