.loader{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
  }
  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 5rem;
    height: 5rem;
    margin: 8px;
    border-radius: 50%;
    border: 0.2em solid #00000000;
    border-color: #ffc500 transparent #ffc500 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }
  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .loader{
    background: rgba(0, 0, 0, 0.685);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
    clip-path: circle(150% at 100% 0);
    transition: clip-path 1s ease-in-out ;
  }
  
  .loader2{
    display: none;
    clip-path: circle(0% at 100% 100%);
  }
  
  
  .progress-content{
    position: absolute;
    display: inline-block;
    width: 30%;
    margin-top: 14%;
  }
  .progress{
    height: 1.3rem;
    border-radius: 5px;
  }
  #states{
    -webkit-animation: 3.5s flash 20;
    font-size: 2em;
  }

  