.loader-div{
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background: #ffffff6e;
    /* height: 100vh; */
    overflow: hidden;
}
/* .loader {
    position: relative;
    width: 80px;
    height: 80px;
}
.loader:before , .loader:after{
    content: '';
    border-radius: 50%;
    position: absolute;
    inset: 0;
    box-shadow: 0 0 10px 2px #1a94c470 inset;
}
.loader:after {
    box-shadow: 0 4px 0 #1a8ab6 inset;
    animation: rotate 1s linear infinite;
}
@keyframes rotate {
    0% {  transform: rotate(0)}
    100% { transform: rotate(360deg)}
} */
.loader {
    width: 48px;
    height: 48px;
    background: #1a8ab6;
    display: block;
    margin: 20px auto;
    position: relative;
    box-sizing: border-box;
    animation: rotationBack 1s ease-in-out infinite reverse;
  }
  .loader::before {
    content: '';  
    box-sizing: border-box;
    left: 0;
    top: 0;
    transform: rotate(45deg);
    position: absolute;
    width: 48px;
    height: 48px;
    background: #1a8ab6;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
  .loader::after {
    content: '';  
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    background: #FFF;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
  @keyframes rotationBack {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  }


#hide{
  display: none;
}
