<!-- start Simple Custom CSS and JS -->
<style type="text/css">
  <style>
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .spinner-global {
      position: absolute;
      z-index: 1;
      height: 100px;
      width: 120px;
      top: 158%;
      left: 50%;
      margin-top: -158px;
      margin-left: 30px;
      transform: translate(-50%, -50%);
      font-family: "Rubik", serif;
      font-weight: 300;
    }

    [class^="ball-"] {
      position: absolute;
      display: block;
      left: 30px;
      width: 15px;
      height: 15px;
      border-radius: 10px;
      transition: all 0.5s;
      animation: circleRotate 8s both infinite;
      transform-origin: 0 750% 0;
    }

    @keyframes circleRotate {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(1440deg);
      }
    }

    .ball-1 {
      z-index: -1;
      background-color: #68f1e0;
      animation-timing-function: cubic-bezier(0.5, 0.3, 0.9, 0.9);
    }

    .ball-2 {
      z-index: -2;
      background-color: #23b9a3;
      animation-timing-function: cubic-bezier(0.5, 0.6, 0.9, 0.9);
    }

    .ball-3 {
      z-index: -3;
      background-color: #353535;
      animation-timing-function: cubic-bezier(0.5, 0.9, 0.9, 0.9);
    }

    .ball-4 {
      z-index: -4;
      background-color: #e6453f;
      animation-timing-function: cubic-bezier(0.5, 1.2, 0.9, 0.9);
    }

    .ball-5 {
      z-index: -5;
      background-color: #f8a13e;
      animation-timing-function: cubic-bezier(0.5, 1.5, 0.9, 0.9);
    }

    .ball-6 {
      z-index: -6;
      background-color: #fad961;
      animation-timing-function: cubic-bezier(0.5, 1.8, 0.9, 0.9);
    }

    .loading-text {
      position: relative;
      top: 130%;
      left: 25%;
      z-index: 1;
      height: 100px;
      transform: translate(-50%, -50%);
      font-size: 1.25rem;
    }
  </style></style>
<!-- end Simple Custom CSS and JS -->
