@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.fa-spinner   {
    animation: spin 0.6s forwards;
}