/*--------------------------------------------------------------
    Loader
--------------------------------------------------------------*/

    .pre-loader.loader1 {
        height: 100%;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999991;
        background-color: var(--wdtSecondaryColor);
    }
    
.loader-inner {
    padding: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    width: 200px;
    height:200px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(var(--wdtSecondaryColorRgb) , 0.8) 30%,
    transparent 70%
  );
  animation: wdt-pulse 2.2s ease-out infinite; -webkit-animation: wdt-pulse 2.2s ease-out infinite;
  opacity: 0;
  box-shadow:
    0 0 120px rgba(var(--wdtPrimaryColorRgb),0.6),
    0 0 240px rgba(var(--wdtPrimaryColorRgb),0.3);
  border: 5px solid rgba(var(--wdtSecondaryColorRgb),0.2);
}

.ring:nth-child(1) {
  animation-delay: 0s;
}
.ring:nth-child(2) {
  animation-delay: 0.4s;
}
.ring:nth-child(3) {
  animation-delay: 0.8s;
}
.ring:nth-child(4) {
  animation-delay: 1.2s;
}

@keyframes wdt-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 1;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.15;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

.core-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px; /* Reduced size for the core glow */
  height: 50px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--wdtPrimaryColor), var(--wdtTertiaryColor));
  box-shadow:
    0 0 25px var(--wdtPrimaryColor),
    0 0 60px var(--wdtPrimaryColor),
    0 0 100px var(--wdtTertiaryColor);
  animation: corePulse 2.2s ease-in-out infinite;
}

@keyframes corePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}



/*--------------------------------------------------------------
    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) {

    }