/*--------------------------------------------------------------
    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: auto;
-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;
}
} */

/*loader1 css ends*/

.loader-inner-child-1 {position: relative;width: 5em;height: 5em;transform: rotate(165deg);}
.loader-inner-child-1:before, .loader-inner-child-1:after {content: '';position: absolute;top: 50%;left: 50%;display: block;width: 0.5em;height: 0.5em;border-radius: 0.25em;transform: translate(-50%, -50%);}
.loader-inner-child-1:before {animation: before 2s infinite;}
.loader-inner-child-1:after {animation: after 2s infinite;}

@keyframes before {
0% {width: 0.5em;box-shadow: 1em -0.5em rgba(var(--wdtPrimaryColorRgb), 0.65), -1em 0.5em rgba(var(--wdtSecondaryColorRgb), 0.85);}
35% {width: 2.5em;box-shadow: 0 -0.5em rgba(var(--wdtPrimaryColorRgb), 0.65), 0 0.5em rgba(var(--wdtSecondaryColorRgb), 0.85);}
70% {width: 0.5em;box-shadow: -1em -0.5em rgba(var(--wdtPrimaryColorRgb), 0.65), 1em 0.5em rgba(var(--wdtSecondaryColorRgb), 0.85);}
100% {box-shadow: 1em -0.5em rgba(var(--wdtPrimaryColorRgb), 0.65), -1em 0.5em rgba(var(--wdtSecondaryColorRgb), 0.85);}
}
@keyframes after {
0% {height: 0.5em;box-shadow: 0.5em 1em rgba(var(--wdtSecondaryColorRgb), 0.65), -0.5em -1em rgba(var(--wdtPrimaryColorRgb), 0.65);}
35% {height: 2.5em;box-shadow: 0.5em 0 rgba(var(--wdtSecondaryColorRgb), 0.65), -0.5em 0 rgba(var(--wdtPrimaryColorRgb), 0.65);}
70% {height: 0.5em;box-shadow: 0.5em -1em rgba(var(--wdtSecondaryColorRgb), 0.65), -0.5em 1em rgba(var(--wdtPrimaryColorRgb), 0.65);}
100% {box-shadow: 0.5em 1em rgba(var(--wdtSecondaryColorRgb), 0.65), -0.5em -1em rgba(var(--wdtPrimaryColorRgb), 0.65);}
}





/*--------------------------------------------------------------
    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) {

    }