.pwa_installer {
    z-index: 2;
    padding: 10px;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
  }

  .installer_heading {
    font-size: 18px;
    font-weight: bold;
    color: aliceblue;
    text-align: center;
  }

  .login_form
  {
    display: flex; 
    width: 100%; 
    justify-content: center;
  }

  .password_field
  {
    display: flex; 
    width: 100%; 
    justify-content: center;
  }

  .installer_icon {
    width: 50px;
    height: 50px;
  }

  .installer_text {
    font-size: 16px;
    font-weight: normal;
    color: aliceblue;
    text-align: center;
    margin-top: 0px;
  }

  .bottom-options {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px
  }

  .bottom-options-container {
    height: -webkit-fill-available;
    display: flex;
    align-items: end;
    justify-content: center;
  }

  @media all and (min-width: 800px) and (max-width: 1600px) {
    body {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .logo {
      max-width: 300px;
      margin-bottom: 1rem;
    }
    .login_submit_centered_panel {
      padding-top: unset;
    }
    .form_group {
      margin-top: unset;
    }
    .sign_in {
      font-size: 26px;
    }
    .content {
      top: 60px;
      margin-bottom: 5rem;
      height: unset;
    }
  }

  .pwa_installer_inner_container {
    padding: 10px 20px;
    padding-bottom: 30px;
    border-radius: 5px;
    background: #7f7f7f;
    width: 500px;
    height: 350px;
    display: flex;
    gap: 10px;
    flex-direction: column;
  }

  .installer_heading {
    font-weight: bolder;
    margin-bottom: 0px;
  }

  .blue-btn {
    font-weight: 600;
    color: var(--light-blue);
    border: 3px solid var(--light-blue);
    border-radius: 11px;
    text-decoration: none;
    padding: 10px 30px;
    background-color: transparent;
    cursor: pointer;
  }

  .checkbox_container {
    display: flex;
    align-items: center;
    gap: 10px;
    height: fit-content
  }

  .checkbox-text {
    font-size: 12px;
  }
  
  .checkbox {
    height: 18px !important;
    width: 18px !important;
    position: unset !important;
  }

  .checkbox::before {
    height: 18px !important;
    width: 18px !important;
  }
  
  .installer_header {
    display: flex;
    justify-content: space-between;
  }

  .close-btn {
    height: 34px;
    width: 34px;
    cursor: pointer;
  }

  .close-btn-container {
    display: flex;
    align-items: center;
  }

  .add-button {
    background-color: var(--primary);
    color: white;
  }

  @media all and (min-width: 800px) and (max-width: 1600px) {
    body {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .logo {
      max-width: 300px;
      margin-bottom: 1rem;
    }
    .login_submit_centered_panel {
      padding-top: unset;
    }
    .form_group {
      margin-top: unset;
    }
    .sign_in {
      font-size: 26px;
    }
    .content {
      top: 60px;
      margin-bottom: 5rem;
      height: unset;
    }
  }

  @media all and (max-width: 800px) {
    body {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .logo {
      max-width: 200px;
      margin-bottom: 1rem;
    }

    .content {
      top: 50px;
      width: 100%;
      margin-bottom: 5rem;
      height: unset;
    }

    .pwa_installer {
      z-index: 2;
      padding: 10px;
      width: 100vw;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    .pwa_installer_inner_container {
      padding: 10px 20px;
      border-radius: 5px;
      background: #7f7f7f;
      width: 400px;
      height: 300px;
      display: flex;
      justify-content: space-between;
      flex-direction: column;
    }
    

    .installer_heading {
      font-size: 14px;
      font-weight: bold;
      color: aliceblue;
      text-align: center;
    }

    .installer_icon {
      width: 50px;
      height: 50px;
    }

    .installer_text {
      font-size: 12px;
      font-weight: normal;
      color: aliceblue;
      text-align: center;
    }

    .add-button {
      background-color: var(--primary);
      color: white;
    }

    .error_strip
    {
      display: none;
    }

    .login_form
    {
      display: flex; 
      width: 100%; 
      justify-content: center;
    }

    .password_field
    {
      display: flex; 
      width: 100%; 
      justify-content: center;
    }

    .logged_in_panel
    {
      display: grid; 
      width: 100%; 
      gap: 20px;
    }

    div#installer {
      /* position: absolute; */
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  }