/* Tailwind classes converted to regular CSS */
    .preload{
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 9999;
        background: linear-gradient(-45deg, #fefefe, #e3fdfd, #ffdde1, #d4c4fb);
        background-size: 400% 400%;
        animation: gradient 15s ease infinite;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    @keyframes gradient {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

  .wrapper-preload {
    width: 200px;
    height: 60px;
    position: relative;
    z-index: 1;
  }
  
  .circle-preload {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: #333;
    left: 15%;
    transform-origin: 50%;
    animation: circle7124 0.5s alternate infinite ease;
  }
  
  @keyframes circle7124 {
    0% {
      top: 60px;
      height: 5px;
      border-radius: 50px 50px 25px 25px;
      transform: scaleX(1.7);
    }
  
    40% {
      height: 20px;
      border-radius: 50%;
      transform: scaleX(1);
    }
  
    100% {
      top: 0%;
    }
  }
  
  .circle-preload:nth-child(2) {
    left: 45%;
    animation-delay: 0.2s;
  }
  
  .circle-preload:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: 0.3s;
  }
  
  .shadow-preload {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow046 0.5s alternate infinite ease;
  }
  
  @keyframes shadow046 {
    0% {
      transform: scaleX(1.5);
    }
  
    40% {
      transform: scaleX(1);
      opacity: 0.7;
    }
  
    100% {
      transform: scaleX(0.2);
      opacity: 0.4;
    }
  }
  
  .shadow-preload:nth-child(4) {
    left: 45%;
    animation-delay: 0.2s;
  }
  
  .shadow-preload:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: 0.3s;
  }
  