@keyframes turn_around {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes background-filling {
  0% {
    background: transparent;
  }
  100% {
    background: var(--active);
  }
}
