/*--------------------------------------------------------------
    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-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;
    }

    @-webkitkeyframes textclip {
        to {
            background-position: 200% center;
        }
    }

    @keyframes textclip {
        to {
            background-position: 200% center;
        }
    }

/* loader-3 styles */
.pre-loader.loader3 .loader-inner {
    z-index: 99999;
    display: grid;
    place-items: center;
    height: 100%;
    background: var(--wdtBodyBGColor);
}
.pre-loader.loader3 svg {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    font-size: 70px;
    color: var(--wdtPrimaryColor);
    /* display: block; */
    display: none;
}
  .pre-loader.loader3 svg:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    border: 2px solid pink;
    height: 60px;
    width: 60px;
  }

.round-bg{
  display: grid;
  width: 60px;
  height: 60px;
  position: relative;
  justify-items: center;
  align-items: center;
  /* z-index: 1; */
  margin: 0 auto;
}
.round-bg:before,.round-bg::after{
    border-radius: 50%;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.round-bg:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    box-shadow: 0 0 0 2px var(--wdtPrimaryColor);
    background: radial-gradient(transparent 0, transparent 4px, var(--wdtPrimaryColor) 6px);
    transform: rotate(45deg);
    z-index: 5;
    border-bottom-right-radius: 0;
    -webkit-animation-name: pendule;
    animation-name: pendule;
}
@keyframes pendule{
	50% {
		transform: rotate(45deg) translate(-50%, -50%);
    }
}
@-webkit-keyframes pendule{
	50% {
		transform: rotate(45deg) translate(-50%, -50%);
    }
}
.round-bg:after {
    position: absolute;
    content: "";
    width: 8px;
    height: 2px;
    opacity: 0.8;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wdtPrimaryColor);
    -webkit-animation-name: dash-pendule;
    animation-name: dash-pendule;
}
@keyframes dash-pendule{
	50% {
		transform: scaleX(3);
		opacity: 0.2;
    }
}
@-webkit-keyframes dash-pendule{
	50% {
		transform: scaleX(3);
		opacity: 0.2;
    }
}
.round {
    /* display: block; */
    display: none;
    grid-column: 1;
    grid-row: 1;
    width: 100px;
    height: 100px;
    border: var(--wdtPrimaryColor)  1px solid;
    border-radius: 100%;
    transform: scale(1);
    opacity: 0;
    z-index: 0;
    animation: 3s ease-in-out infinite re-volve;
    position: inherit;
}
@keyframes re-volve {
  0% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: scale(3);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
/* loader-3 styles */

/*--------------------------------------------------------------
    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) {

    }