Spin counter clockwise

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

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

Based on @Ibelick

Designed with ♥ by @AdrianGerman