

      body {
        inset: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        background-color: #f0f0f0;
        padding: 0;
        position: fixed;
      }
    
      .container {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      box-shadow: 0px 4px 4px 0px #0000001A;
      background-color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      }
  
      .progress-ring {
        width: 29px;
        height: 29px;
        border-radius: 50%;
        border: 6px solid #22366A;
        border-top: 6px solid #22366A;
        border-bottom-color: #1A0C0C0C; /* Set the border color to white for the bottom portion */
        box-sizing: border-box; /* Ensure borders are included in the element's dimensions */
        animation: spin 1s linear infinite;
      }
  
      @media (max-width: 799px) { /*choose the width you prefer*/
        .container {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      box-shadow: 0px 4px 4px 0px #0000001A;
      background-color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      }
  
      .progress-ring {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 6px solid #22366A;
        border-top: 6px solid #22366A;
        border-bottom-color: #1A0C0C0C; /* Set the border color to white for the bottom portion */
        box-sizing: border-box; /* Ensure borders are included in the element's dimensions */
        animation: spin 1s linear infinite;
      }
    }
  
      @keyframes spin {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
      }
   

     
  