/* HTML: <div class="loader"></div> */
.loader {
    width: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: l5 1s infinite linear alternate;
    position: absolute;
    top: 49.3%;
    left: 49.3%;
    z-index: 9999;
    border: 5px;
  }
  @keyframes l5 {
      0%  {box-shadow: 20px 0 #f42e7b, -20px 0 #f42e7b;background: #f42e7b }
      33% {box-shadow: 20px 0 #f42e7b, -20px 0 #f42e7b;background: #f42e7b}
      66% {box-shadow: 20px 0 #f42e7b,-20px 0 #f42e7b; background: #f42e7b}
      100%{box-shadow: 20px 0 #f42e7b,-20px 0 #f42e7b; background: #f42e7b }
  }