/* HTML: <div class="loader"></div> */
.loader {
  z-index: 99999;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 4px solid #FDD535;
  border-right-color: transparent;
  clip-path: inset(-100% -100% -100% -100% round 50%);
  transform: rotate(-45deg);
  animation: bounce-spin 2.5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

@keyframes bounce-spin {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(315deg);
  }
}
