/* Custom Loader Styles */

.loader-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: #005ff1;
  overflow: hidden;
  display: block;
  opacity: 1;
}

.loader-wrap .preloader {
  position: relative;
  width: 100%;
  height: 100%;
}

.loader-wrap svg {
  width: 100%;
  height: 100%;
  visibility: visible !important;
  display: block;
}

/* Car styling */
#car {
  fill: #fff;
}

/* Smoke particles styling */
.smoke-particle,
.smoke-trail-particle {
  fill: #fff;
  opacity: 0.8;
}

/* Preloader close button */
.preloader-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100000;
  transition: all 0.3s ease;
}

.preloader-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

