/*--------------------------------------------------------------
    Loader
--------------------------------------------------------------*/

    .pre-loader {
        height: 100%;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999991;
        background-color: var(--wdtSecondaryColor);
    }

    .loader-inner {
        padding: 30px;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wdt-cus-loader-line {
        width: 20px;
        height: 180PX;
        margin: 0 8px;
        position: relative;
        display: flex;
        justify-content: space-between;
    }

    .wdt-cus-loader-line:before,
    .wdt-cus-loader-line:after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        display: block;
        width: 2px;
        height: 100%;
        background: linear-gradient(42deg, var(--wdtPrimaryColor), var(--wdtAccentTxtColor));
        background-size: 2px 100%;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: var(--wdtRadius_Part);
        -webkit-border-radius: var(--wdtRadius_Part);
        opacity: 0;
        animation: wdt-cus-loader-line-animation 1.1s linear infinite;
        -webkit-animation: wdt-cus-loader-line-animation 1.1s linear infinite;
    }

    .wdt-cus-loader-line:before { left: 0; right: auto; }
    .wdt-cus-loader-line:after { right: 0; left: auto; }

    .wdt-cus-loader-line:nth-child(1):before { animation-delay: 0.0s; -webkit-animation-delay: 0s; }
    .wdt-cus-loader-line:nth-child(1):after { animation-delay: 0.1s; -webkit-animation-delay: 0.1s; }
    .wdt-cus-loader-line:nth-child(2):before { animation-delay: 0.2s; -webkit-animation-delay: 0.2s; }
    .wdt-cus-loader-line:nth-child(2):after { animation-delay: 0.3s; -webkit-animation-delay: 0.3s; }
    .wdt-cus-loader-line:nth-child(3):before { animation-delay: 0.4s; -webkit-animation-delay: 0.4s; }
    .wdt-cus-loader-line:nth-child(3):after { animation-delay: 0.5s; -webkit-animation-delay: 0.5s; }
    .wdt-cus-loader-line:nth-child(4):before { animation-delay: 0.6s; -webkit-animation-delay: 0.6s; }
    .wdt-cus-loader-line:nth-child(4):after { animation-delay: 0.7s; -webkit-animation-delay: 0.7s; }
    .wdt-cus-loader-line:nth-child(5):before { animation-delay: 0.8s; -webkit-animation-delay: 0.8s; }
    .wdt-cus-loader-line:nth-child(5):after { animation-delay: 0.8s; -webkit-animation-delay: 0.8s; }
      
      @keyframes wdt-cus-loader-line-animation {
        0% { transform: scaleY(0); -webkit-transform: scaleY(0); opacity: 0; }
        50% { transform: scaleY(1); -webkit-transform: scaleY(1); opacity: 1; }
        100% { transform: scaleY(0); -webkit-transform: scaleY(0); opacity: 0; }
      }

      @-webkit-keyframes wdt-cus-loader-line-animation {
        0% { transform: scaleY(0); -webkit-transform: scaleY(0); opacity: 0; }
        50% { transform: scaleY(1); -webkit-transform: scaleY(1); opacity: 1; }
        100% { transform: scaleY(0); -webkit-transform: scaleY(0); opacity: 0; }
      }


/*--------------------------------------------------------------
    Accents
--------------------------------------------------------------*/

    .pre-loader.loader1 { background-color: var(--wdtSecondaryColor); }

    /* .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) {
        .wdt-cus-loader-line { height: 160px; }
    }


    /* Common Styles for the devices below 479px width */

    @media only screen and (max-width: 479px) {
        .wdt-cus-loader-line { height: 150px; }
    }