/*--------------------------------------------------------------
    Loader
--------------------------------------------------------------*/

    .pre-loader {
        height: 100%;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999991;
        background-color: #fff;
    }

    .loader-inner {
        padding: 25px;
        position: absolute;
        left: 50%;
        top: 50%;
        text-align: center;
        width: 100%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .loader-text {
        display: inline-block;
        font-family: var(--wdtFontTypo_Alt);
        font-size: clamp(2.875rem, 2.6304rem + 1.3497vw, 4.25rem); /*68px - 46px*/
        font-weight: bold !important;
        letter-spacing: 1px;
        line-height: normal;
        text-transform: uppercase;
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-animation: textclip 1.5s linear infinite;
        animation: textclip 1.5s linear infinite;
    }

    @-webkit-keyframes textclip {
        to {
            background-position: 200% center;
        }
    }

    @keyframes textclip {
        to {
            background-position: 200% center;
        }
    }


/*--------------------------------------------------------------
    Accents
--------------------------------------------------------------*/

    .pre-loader { background-color: var(--wdtBodyBGColor); }
    .loader-text { background-image: linear-gradient(to right, var(--wdtPrimaryColor) 10%, var(--wdtHeadAltColor) 50%, var(--wdtPrimaryColor) 60%); }


/*--------------------------------------------------------------
    Responsive
--------------------------------------------------------------*/

    /*----*****---- << Mobile (Landscape) >> ----*****----*/

    /* Note: Design for a width of 480px */


    /* benher-loader */




.wdt-loader-wrapper {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}


.wdt-loader-container {
  height: 350px;
  width: 350px;
  position: relative;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  display: inherit;
}


.wdt-loader-roller {
  height: 45px;
  width: 150px;
  border: 5px solid rgb(var(--wdtSecondaryColorRgb));
  border-radius: 7px;
  background-image: linear-gradient(
    to bottom,
    rgba(var(--wdtPrimaryColorRgb), 1) 0%,
    rgba(var(--wdtPrimaryColorRgb), 1) 80%,
    rgba(var(--wdtPrimaryColorRgb), 0.75) 80%
  );
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  animation: wdt-loader-roller 2s infinite ease-in-out;
}


.wdt-loader-roller::before {
  content: "";
  position: absolute;
  height: 7px;
  width: 75px;
  background-color: rgba(255, 255, 255, 0.6);
  top: 8px;
  left: 8px;
  border-radius: 10px;
}


.wdt-loader-roller::after {
  content: "";
  position: absolute;
  height: 40px;
  width: 85px;
  border: 7px solid rgb(var(--wdtSecondaryColorRgb));
  border-left: none;
  right: -20px;
  top: 20px;
  z-index: -1;
  border-radius: 7px;
}


.wdt-loader-handle {
  height: 30px;
  width: 7px;
  background-color: rgb(var(--wdtSecondaryColorRgb));
  position: absolute;
  top: 68px;
  right: 65px;
}

.wdt-loader-handle::after {
  content: "";
  position: absolute;
  height: 75px;
  width: 25px;
  background-color: rgb(var(--wdtSecondaryColorRgb));
  bottom: -75px;
  right: -8px;
  border-radius: 5px;
}


.wdt-loader-paint {
  background-color: rgb(var(--wdtPrimaryColorRgb));
  height: 0;
  width: 130px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  z-index: -1;
  animation: wdt-loader-paint 2s infinite ease-in-out;
}


@keyframes wdt-loader-roller {
  40% {
    top: 165px;
  }
}

@keyframes wdt-loader-paint {
  40% {
    height: 165px;
  }
}



 @media only screen and (max-width:767px) {
.wdt-loader-paint {
 width:80px;    
}
.wdt-loader-container {
  height: 300px;
  width: 300px;
 }
.wdt-loader-roller {
  height: 45px;
  width: 100px;}
@keyframes wdt-loader-roller {
  40% {
    top: 125px;
  }
}

@keyframes wdt-loader-paint {
  40% {
    height: 125px;
  }
}

 }