
body {
    position: relative;
  }
  
  .loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    /* background-color: rgba(255, 255, 255, 0.8);  */
    z-index: 9999; /* Ensure the loader is above other content */
  }
  .swal2-input{
   
    color: rgb(12, 12, 8) !important;
    
  }
  
  .loading svg {
    width: 3.25em;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-animation: rotate4 2s linear infinite;
    animation: rotate4 2s linear infinite;
  }
  
  .loading circle {
    fill: none;
    stroke: hsl(225, 11%, 93%);
    stroke-width: 6;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    -webkit-animation: dash4 1.5s ease-in-out infinite;
    animation: dash4 1.5s ease-in-out infinite;
  }
  
  @keyframes rotate4 {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  @keyframes dash4 {
    0% {
      stroke-dasharray: 1, 200;
      stroke-dashoffset: 0;
    }
    50% {
      stroke-dasharray: 90, 200;
      stroke-dashoffset: -35px;
    }
    100% {
      stroke-dashoffset: -125px;
    }
  }
  
