/*--------------------------------------------------------------
    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%;
    font-size: 150px;
    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: clamp(2.875rem, 2.6304rem + 1.3497vw, 4.25rem);
    /*68px - 46px*/
    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;
    -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;
    }
}



/* LOGO PULSE */
.logo {
    transform-origin: 50% 50%;
    animation: logoPulse 1.4s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.96);
        opacity: .7;
    }
}




/* Base */

    /* Each path animation */
    .hotel-loader path {
      stroke: #D8A31A;
      stroke-width: 0.6;
      stroke-dasharray: 600;
      stroke-dashoffset: 600;
      animation: drawLine 3s ease-in-out infinite;
    }



    /* Draw effect */
    @keyframes drawLine {
      0% {
        stroke-dashoffset: 600;
        fill-opacity: 0;
      }
      50% {
        stroke-dashoffset: 0;
        fill-opacity: .6;
      }
      100% {
        stroke-dashoffset: -600;
        fill-opacity: 1;
      }
    }



/*--------------------------------------------------------------
    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) {}