/*--------------------------------------------------------------
    Loader
--------------------------------------------------------------*/

    .pre-loader {
        height: 100%;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999991;
        background-color: #fff;
    }

    .loader-inner {
        width: 45px;
        aspect-ratio: 1;
        background: no-repeat linear-gradient(var(--wdtPrimaryColor) 0 0), no-repeat linear-gradient(var(--wdtSecondaryColor) 0 0), no-repeat linear-gradient(var(--wdtTertiaryColor) 0 0);
        animation: l15-1 1s infinite,l15-2 1s infinite;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
      @keyframes l15-1 {
       0%,100% {background-size:20% 100%}
       33%,66% {background-size:20% 40%}
      }
      @keyframes l15-2 {
       0%,33%   {background-position: 0    0,50% 100%,100% 100%}
       66%,100% {background-position: 100% 0,0   100%,50%  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) {

    }