@keyframes rotateLeft{0%{transform:rotate(0deg) scale(1)}50%{transform:rotate(-180deg) scale(1.2)}to{transform:rotate(-1turn) scale(1)}}@keyframes rotateRight{0%{transform:rotate(0deg) scale(1)}50%{transform:rotate(1turn) scale(.8)}to{transform:rotate(1turn) scale(1)}}.rotate-left{animation:rotateLeft 2s linear infinite;animation-timing-function:ease-in-out}.rotate-right{animation:rotateRight 2s linear infinite;animation-timing-function:ease-in-out}