.afro-rotate-rtl {
    animation: afro-rotate-rtl-anim 15s linear infinite;
}

@keyframes afro-rotate-rtl-anim {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}
