.settings-wrapper {
    width: 100vw;
    height: 90%;
    padding-top: 56px;
    display: flex;
    flex-direction: row;
    background-color: #EEEEEE;
  }
  .settings-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 250px;
    display: flex;
    z-index: 500;
    padding: 1.4rem;
    padding-top: calc(56px + 1.4rem);
  }
  .settings-nav a {
    padding: .8rem .4rem;
    text-decoration: none;
    color: black;
    font-weight: 400;
  }

  .settings-section-wrapper {
    width: 100%;
    padding: 2rem;
    padding-left: calc(2rem + 250px);
    padding-right: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .settings-section {
    width: 100%;
    padding: 1rem;
  }

  .settings-form {
    list-style-type: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* max-width: 700px; */
    text-transform: capitalize;
  }
  .checkbox-form {
    display: flex;

  }

  .settings-form-header {
    padding: 1rem;
  }
  .settings-form-item {
    width: 100%;
    display: flex;
    margin-bottom: 1rem;
  }
  .settings-form-label {
    font-size: 14px;
    font-weight: 600;
    margin-right: .6rem;
    width: 400px;
  }
  .settings-form-control {
    width: 100%;
    border: none;
    background-color: transparent;
    border: .5px solid grey;
    border-radius: 8px;
    padding: 12.5px 10px;
  }
  .settings-form-button {
    display: block;
    padding: 12.5px 30px;
    border-radius: 12px;
    border: 1px solid grey;
    background-color: black;
    color: white;
    text-transform: capitalize;
    margin-bottom: 5rem;
  }

  .settings-form-button:hover {
    background-color: lightgrey;
  }

  .checkbox-container {
    display: flex;
    width: 100%;
    max-width: 50%;
    min-height: 150px;
  }
  .checkbox-container div{
    width: calc(100% - 24px -1rem);
  }

  .checkbox-container label {
    min-height: 24px;
    display: flex;
    align-items: center;
    font-weight: 600;
  }
  .checkbox-container p {
    max-width: 300px;
    font-weight: 300;
    text-transform: lowercase!important;
  }
  .settings-form-checkbox {
    border: .5px solid grey;
    height: 24px!important;
    width: 24px!important;
    border-radius: 8px!important;
    margin-right: 1rem;
    box-sizing: border-box;
  }

  .settings-section p{
    text-transform: capitalize;
    color: grey;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  .portal-button {
    padding: 1.4rem 2rem;
    border-radius: 12px;
    border: 1px solid grey;
  }

  .tab-link {
    box-sizing: border-box;
    color: grey;
  }
  .tab-selected {
    border-bottom: 3px solid grey;
    color: black;
  }
  @media(max-width: 772px) {
    .settings-section-wrapper {
      padding-left: 0;
      padding-right: 0;
    }
    .settings-nav {
      display: none;
    }
    .settings-form {
      width: 100%;
    }
    .settings-form-label {
      width: auto;
    }
  }
  @media(min-width: 1000px) {
    .settings-section-wrapper {
      padding-right: calc(250px + 2rem)!important;
    }
  }
