Spin clockwise

global.css
.spin-clockwise {
  animation: spin-clockwise 0.6s linear both;
}

@keyframes spin-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman