@keyframes spinning82341 {
  to {
    transform: rotate(360deg);
  }
}

.preloader {
  position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: rgba(33, 33, 33, 0.2);
    backdrop-filter: blur(50px);
    display: flex;
    opacity: 0;
    transition: opacity 1s ease;


    .preloader-container {
      margin: auto auto;
      vertical-align: middle;
      width: fit-content;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .spinner-wrapper {
      position: relative;
      width: 25vw;
      height: 25vw;
      min-width: 200px;
      min-height: 200px;
    }
    
    .preloader-image {
      position: absolute;
      width: 20vw;
      min-width: 180px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 99999;
    }
    
    .spinner {
      background-image: linear-gradient(rgb(255, 166, 26) 35%,rgb(212, 69, 73));
      width: 100%;
      height: 100%;
      animation: spinning82341 1.7s linear infinite;
      border-radius: 100%;
      filter: blur(1px);
      box-shadow: 0px -5px 20px 0px rgb(255, 166, 26), 0px 5px 20px 0px rgb(212, 69, 73);
    }
    
    .spinner1 {
      background-color: rgba(33, 33, 33, 0.4);
      background-image: linear-gradient(rgba(33, 33, 33, 0.4)), url("/assets/img/loader-bg.webp");
      background-position: center center;
      background-repeat: repeat;
      width: 100%;
      height: 100%;
      border-radius: 100%;
      filter: blur(10px);
    }
    
    .loader-text {
      text-align: center;
      margin-top: 5vh;
      color: #ffffff;
      transition: opacity 0.3s ease, color 0.3s ease;
      white-space: pre-wrap;
      word-wrap: break-word;
      max-width: 80vw;
      line-height: 1.5;
    }
}