
.loading {
  overflow: hidden;
  height: 100vh;
}


window{
overflow: hidden;
}

.bodyLoader {
    z-index: 999999;
    position: fixed;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background:  var(--loaderColor);
  --loaderColor: hsla(270, 89%, 50%, 1);
  
}

.loader {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(#f07e6e, #84cdfa, #5ad1cd);
    animation: animate 1.2s linear infinite;
}

.loaderLabel {
    text-shadow:0 0 10px #fff000, 2px 2px 1px #000000;
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color:none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  animation: center 1.5s ease infinite;
}

@keyframes center {
  0%,
  25%,
  75%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
   background: -webkit-linear-gradient(to right, #ff6a00, #ee0979);  
background: linear-gradient(#ff6a00, #a17fe0, #ee0979); 
}

.loader span:nth-child(1) {
    filter: blur(5px);
}

.loader span:nth-child(2) {
    filter: blur(10px);
}

.loader span:nth-child(3) {
    filter: blur(25px);
}

.loader span:nth-child(4) {
    filter: blur(50px);
}

.loader:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: var(--loaderColor);
    border: solid var(--loaderColor) 10px;
    border-radius: 50%;
}
