.blur-loader {
    position: fixed;
    top: 0%;
    left: 0;
    right: 0%;
    bottom: 0;
    background-color: rgba(255, 255, 255, 255);
    backdrop-filter: blur(5px); /* Adjust the blur value as needed */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .blur-loader .loader {
    position: absolute;
    top: 39%;
    right: 47%;
    display: inline-block;
    width: 100px;
    height: 100px;
    border: 10px solid rgb(0, 0, 0);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease infinite;
  }
  
  
  @media screen and (max-width : 768px) {
    .blur-loader .loader {
      
      top: 39%;
      right: 43%;

    }
  }


  @media screen and (max-width : 468px) {
    .blur-loader .loader {
      
      top: 39%;
      right: 40%;

    }
  }
  
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  