.configurator-area {
  position: relative;
}

.configurator-preloader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #191a55 0%, #2c3bb0 100%);
  z-index: 5;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.configurator-preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.configurator-preloader__progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.configurator-preloader__progress-bar {
  width: 0;
  height: 100%;
  background-color: #c6ed2c;
  box-shadow: 0 0 12px rgba(198, 237, 44, 0.8);
  transition: width linear;
}

.configurator-preloader__spinner {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.25);
  border-top-color: #ffffff;
  animation: configurator-preloader-spin 1s linear infinite;
}

@keyframes configurator-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
