/*--------------------------------------------------------------
    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: 600 !important;
        letter-spacing: 0;
        line-height: normal;
        text-transform: none;
        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;
    }

    .loader-text:before { 
        background-color: rgb(120 120 123 / 100%);
        content: "";
        height: 126px;
        margin: auto;
        opacity: .18;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        width: 126px;
        z-index: -1; 
        -webkit-border-radius: 50%;
        border-radius: 50%;
        -webkit-animation: ripple 0.7s linear infinite;
        animation: ripple 0.7s 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: -webkit-linear-gradient(left, var(--wdtPrimaryColor) 10%, var(--wdtSecondaryColor) 50%, var(--wdtPrimaryColor) 60%); 
        background-image: linear-gradient(to right, var(--wdtPrimaryColor) 10%, var(--wdtSecondaryColor) 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) {

    }