Impulse rotation right

global.css
.impulse-rotation-right {
  animation: impulse-rotation-right 1s ease-in-out both;
}

@keyframes impulse-rotation-right {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-40deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman