@keyframes rotate-cw{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes rotate-ccw{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}.animate-rotate-cw{animation:rotate-cw 3s linear infinite}.animate-rotate-ccw{animation:rotate-ccw 3s linear infinite}@keyframes fade{0%{opacity:.1}50%{opacity:1}to{opacity:.1}}.animate-fade{animation:fade 2.5s ease-in-out infinite}