/*--------------------------------------------------------------
    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-icon {
        display: inline-block;
        font-family: var(--wdtFontTypo_Alt);
        font-size: clamp(6.25rem, 0rem + 7.8125vw, 9.375rem);
        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;
    }

    @keyframes textclip {
        to {
            background-position: 200% center;
        }
    }

    @-webkit-keyframes textclip {
        to {
            background-position: 200% center;
        }
    }

    .wdt-to-top-strocke { fill:none; stroke:var(--wdtHeadAltColor); stroke-linecap:round; stroke-linejoin:round; animation: line-to-top 2.5s linear infinite; -webkit-animation: line-to-top 2.5s linear infinite; stroke-dasharray: 100; }
    .wdt-to-top-bg { fill: var(--wdtPrimaryColor); transform-origin: center; -webkit-transform-origin: center; animation: round 2s linear infinite; opacity: 0; }

    @keyframes line-to-top {
        0% { stroke-dashoffset: -100; }
        50% { stroke-dashoffset: 0; }
        100% { stroke-dashoffset: 100; }
    }
    @-webkit-keyframes line-to-top {
        0% { stroke-dashoffset: -100; }
        50% { stroke-dashoffset: 0; }
        100% { stroke-dashoffset: 100; }
    }



/*--------------------------------------------------------------
    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) {

    }