/*--------------------------------------------------------------
    Loader
--------------------------------------------------------------*/

    .pre-loader {
        height: 100%;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999991;
        background-color: #fff;
    }

   


.ferris_wheel ,.wheel {
  border: 6px solid var(--wdtPrimaryColor);
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.ferris_wheel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(1.4, 1.4);
  border: 0;
}

.wheel_wrap {
  position: absolute;
  animation: wheel_rotate 10s infinite linear;
}

.wheel:before {
  content: "";
  height: 50px;
  width: 50px;
  background: var(--wdtSecondaryColor);
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
  z-index: 1;
}

.wheel:after {
  content: "";
  width: 16px;
  height: 16px;
  background:var(--wdtPrimaryColor);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;
  border-radius: 50%;
  border: 4px solid var(--wdtSecondaryColor);
  z-index: 1;
}

.wheel span:nth-child(1):before {
  content: "";
  border-bottom: 2px solid var(--wdtQuaternaryColor);
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  top: 50%;
  left: 6px;
}

.wheel span:nth-child(1):after {
  content: "";
  border-right: 2px solid var(--wdtQuaternaryColor);
  position: absolute;
  top: 0;
  left: 0;
  height: 150px;
  top: 6px;
  left: 50%;
  transform: rotate(45deg);
}

.wheel span:nth-child(2):before {
  content: "";
  border-right: 2px solid var(--wdtQuaternaryColor);
  position: absolute;
  top: 0;
  left: 0;
  height: 150px;
  top: 5px;
  left: 50%;
  transform: rotate(-45deg);
}

.wheel span:nth-child(2):after {
  content: "";
  border-right: 2px solid var(--wdtQuaternaryColor);
  position: absolute;
  top: 0;
  left: 0;
  height: 150px;
  top: 6px;
  left: 50%;
}

div.stand:before,
div.stand:after {
  content: "";
  position: absolute;
  border-right: 4px solid var(--wdtSecondaryColor);
  height: 120px;
  transform: rotate(15deg);
  top: 88px;
  left: 50%;
  margin-left: -15px;
}

div.stand:after {
  transform: rotate(-15deg);
  margin-left: 23px;
}

.stand span {
  position: absolute;
  height: 10px;
  background: var(--wdtPrimaryColor);
    width: 100px;
  width: 100px;
  bottom: -60px;
  left: 50%;
  margin-left: -44px;
  z-index: 1;
}
.pre-loader :before,.pre-loader :after{ 
  -webkit-box-sizing:content-box !important; 
    box-sizing:content-box !important;
}
.pre-loader *,.pre-loader  *:before,.pre-loader *:after{ -webkit-box-sizing:content-box !important; 
    box-sizing:content-box !important;  }


@keyframes wheel_rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}


.buckets {
  position: absolute;
  border: 6px solid var(--wdtSecondaryColor);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  z-index: 1;
}

.buckets div {
  position: absolute;
  animation: bucket_rotate 10s infinite linear;
  top: 50%;
  left: 50%;
  margin-top: 11px;
  margin-left: -13px;
}

.buckets div:before {
  content: "";
  height: 13px;
  left: 9px;
 border-right: 2px solid var(--wdtQuaternaryColor);
  position: absolute;
  top: -12px;
  transform: rotate(30deg);
}

.buckets div:after {
  content: "";
  height: 13px;
  border-right: 2px solid var(--wdtQuaternaryColor);
  position: absolute;
  right: 10px;
  transform: rotate(-30deg);
  top: -12px;
}

.buckets span {
  display: inline-block;
  border-top: 15px solid var(--wdtSecondaryColor);
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  height: 0;
  width: 20px;
  position: relative;
}

.buckets span:before {
  content: "";
  position: absolute;
  top: -15px;
  height: 3px;
  width: 25px;
  left: -2px;
 background: var(--wdtQuaternaryColor);
}

.buckets span:after {
  content: "";
  height: 5px;
  left: -2px;
  background: linear-gradient(to right,  var(--wdtPrimaryColor) 0%,var(--wdtPrimaryColor) 35%,var(--wdtTertiaryColor) 35%,var(--wdtTertiaryColor) 66%,var(--wdtPrimaryColor) 66%,var(--wdtPrimaryColor) 100%);
  width: 25px;
  position: absolute;
  top: -12px;
}

@keyframes bucket_rotate {
  0% { 
    transform: rotate(0) translateX(75px) rotate(0); 
  }
  100% { 
    transform: rotate(360deg) translateX(75px) rotate(-360deg); 
  }
}

.buckets div:nth-child(2) {
  animation-delay: -8.75s;
}

.buckets div:nth-child(3) {
    animation-delay: -2.5s;
}

.buckets div:nth-child(4) {
  animation-delay: -1.2s;
}

.buckets div:nth-child(5) {
  animation-delay: -3.75s;
}

.buckets div:nth-child(6) {
      animation-delay: -76.3s;
}

.buckets div:nth-child(7) {
      animation-delay: -37.5s;
}

.buckets div:nth-child(8) {
  animation-delay: -35s;
}