/*--------------------------------------------------------------
    Loader
--------------------------------------------------------------*/

    .pre-loader {
        height: 100%;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999991;
        background-color: var(--wdtAccentTxtColor);
    }

    .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: var(--wdtLetterSpacing_1X);
        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;
        }
    }
.loader1 {
    background-color: var(--wdtTertiaryColor) !important;
    display: flex;
    align-items: center;
    justify-content: center;}

.wdt-wrap {
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.wdt-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,102,0,0.09) 0%, transparent 60%);
  pointer-events: none;
}

.wdt-inner { width: 92%; max-width: 780px; }
.wdt-inner svg { width: 100%; height: auto; display: block; }

.wdt-tbg { stroke: #1c1c1c; stroke-width: 1.5; fill: none; }

.wdt-tfl {
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 32 380;
  stroke-dashoffset: 412;
  filter: drop-shadow(0 0 4px currentColor);
  animation: wdt-fl 3s cubic-bezier(0.5, 0, 0.85, 1) infinite;
}

.wdt-a { stroke: #ff6600; color: #ff6600; }
.wdt-b { stroke: #cc4400; color: #cc4400; }

.wdt-gl { animation: wdt-gl 2s ease-in-out infinite; }

@keyframes wdt-fl  { to { stroke-dashoffset: 0; } }
@keyframes wdt-gl  { 0%, 100% { opacity: .35; } 50% { opacity: .85; } }

/*--------------------------------------------------------------
    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 */

    @media only screen and (min-width: 480px) and (max-width: 767px) {

    }


    /* Common Styles for the devices below 479px width */

    @media only screen and (max-width: 479px) {

    }