@keyframes icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.icon-spin {
  animation: icon-spin 1s infinite linear;
}
