/*--------------------------------------------------------------
    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: 3.75rem;
        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;
        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;
        }
    } */

    .loader-inner {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 200px;
        height: 200px;
        margin-top: -100px;
        margin-left: -100px;
    }
      
    .loader-inner .loader-text {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 10;
        width: 160px;
        height: 100px;
        margin-top: -50px;
        margin-left: -80px;
        border-radius: 5px;
        background-color: var(--wdtPrimaryColor);
        background-image: none;
        color: transparent;
        animation: dot1 3s cubic-bezier(0.55, 0.3, 0.24, 0.99) infinite;
    }
    
    .loader-inner .loader-text:nth-child(2) {
        z-index: 11;
        width: 150px;
        height: 90px;
        margin-top: -45px;
        margin-left: -75px;
        border-radius: 3px;
        background-color: var(--wdtTertiaryColor);
        animation-name: dot2;
        -webkit-box-shadow: 0px 0px 18px 0px rgba(var(--wdtPrimaryColorRgb), 0.3) inset;
        box-shadow: 0px 0px 20px 0px rgba(var(--wdtPrimaryColorRgb), 0.3) inset;
    }
    
    .loader-inner .loader-text:nth-child(3) {
        z-index: 12;
        width: 40px;
        height: 20px;
        margin-top: 50px;
        margin-left: -20px;
        border-radius: 0 0 5px 5px;
        background-color: var(--wdtSecondaryColor);
        animation-name: dot3;
    }
    
    @keyframes dot1 {
        3%, 97% { width: 160px; height: 100px; margin-top: -50px; margin-left: -80px; }
        30%, 36% { width: 80px; height: 120px; margin-top: -60px; margin-left: -40px; }
        63%, 69% { width: 40px; height: 80px; margin-top: -40px; margin-left: -20px; }
    }
    
    @keyframes dot2 {
        3%, 97% { width: 150px; height: 90px; margin-top: -45px; margin-left: -75px; }
        30%, 36% { width: 70px; height: 96px; margin-top: -48px; margin-left: -35px; }
        63%, 69% { width: 32px; height: 60px; margin-top: -30px; margin-left: -16px; }
    }
    
    @keyframes dot3 {
        3%, 97% { width: 40px; height: 20px; margin-top: 50px; margin-left: -20px; }
        30%, 36% { width: 8px; height: 8px; margin-top: 49px; margin-left: -5px; border-radius: 8px; }
        63%, 69% { width: 16px; height: 4px; margin-top: -37px; margin-left: -8px; border-radius: 10px; }
    }

/*--------------------------------------------------------------
    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) {

    }