/************************************************************************************
 * 
 * 
 * Jay Shree Ram - Jai Shree Krishna - Om Namah Shivay
 * Created by: vijay Raaz 
 * +918923005483
 * Mathura
 * 
 * 
 ***********************************************************************************/
.spiner-section {
    display: none;
}
.spiner {
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 999999999999999;
    backdrop-filter: blur(2px);
    background: #ffffff47;
  display: flex;
  justify-content: center;
  align-items: center;
  --color: hsl(167.89deg 98.28% 22.75%);
  --animation: 2s ease-in-out infinite;
}

.spiner .circled {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 20px;
  height: 20px;
  border: solid 2px var(--color);
  border-radius: 50%;
  margin: 0 10px;
  background-color: transparent;
  animation: circled-keys var(--animation);
}

.spiner .circled .dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color);
  animation: dot-keys var(--animation);
}

.spiner .circled .outline {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  animation: outline-keys var(--animation);
}

.circled:nth-child(2) {
  animation-delay: 0.3s;
}

.circled:nth-child(3) {
  animation-delay: 0.6s;
}

.circled:nth-child(4) {
  animation-delay: 0.9s;
}

.circled:nth-child(5) {
  animation-delay: 1.2s;
}

.circled:nth-child(2) .dot {
  animation-delay: 0.3s;
}

.circled:nth-child(3) .dot {
  animation-delay: 0.6s;
}

.circled:nth-child(4) .dot {
  animation-delay: 0.9s;
}

.circled:nth-child(5) .dot {
  animation-delay: 1.2s;
}

.circled:nth-child(1) .outline {
  animation-delay: 0.9s;
}

.circled:nth-child(2) .outline {
  animation-delay: 1.2s;
}

.circled:nth-child(3) .outline {
  animation-delay: 1.5s;
}

.circled:nth-child(4) .outline {
  animation-delay: 1.8s;
}

.circled:nth-child(5) .outline {
  animation-delay: 2.1s;
}

@keyframes circled-keys {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes dot-keys {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes outline-keys {
  0% {
    transform: scale(0);
    outline: solid 20px var(--color);
    outline-offset: 0;
    opacity: 1;
  }

  100% {
    transform: scale(1);
    outline: solid 0 transparent;
    outline-offset: 20px;
    opacity: 0;
  }
}