@keyframes aim-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.spin-icon { animation: aim-spin .6s linear infinite; display: inline-block; }
