#nav-wrapper {
    background:var(--lightgrey);
}
#nav-wrapper button {
    cursor: pointer;
    border: 0;
    padding: 0;
  }
#nav-wrapper .tabs {
    position: relative;
    background: var(--lightgrey);
    max-width: 80%;
  }
#nav-wrapper .tabs:not(.--jsfied) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
#nav-wrapper .tabs .--hidden {
    display: none;
  }
#nav-wrapper .tabs a, .tabs button {
    width: 100%;
    height: 100%;
    display: block;
    font-size: 1em;
    line-height: 1.2;
    text-align: center;
    color: #000;
    background-color: transparent;
  }
#nav-wrapper .tabs .-primary {
    display: flex;
    list-style-type: none;
    margin-bottom: 0;
  }
#nav-wrapper .tabs .-primary > li {
    flex-grow: 1;
    background-color: var(--lightgrey);
    font-weight: 600;
  }
#nav-wrapper .tabs .-primary > li + li {
    border-left: 1px solid #e4e4e4;
  }
#nav-wrapper .tabs .-primary > li > a, .tabs .-primary > li > button {
    white-space: nowrap;
    padding: 1em 0.6em;
    box-shadow: inset 0 -0.1em 0 #e4e4e4;
  }
#nav-wrapper .tabs .-primary > li > a:hover,
#nav-wrapper .tabs .-primary > li > a:focus,
.tabs .-primary > li > button:hover,
.tabs .-primary > li > button:focus {
    background-color: #e4e4e4;
  }
  
#nav-wrapper .tabs .-primary > li > a.selected, .tabs .-primary > li > button.selected {
    background-color: #fff;
    color: var(--brightred);
    box-shadow: none;
  }
#nav-wrapper .tabs .-primary > li > a:active, .tabs .-primary > li > button:active {
    background-color: #cbcbcb;
  }
#nav-wrapper .tabs .-primary .-more {
    background-color: #e4e4e4;
  }
#nav-wrapper .tabs .-primary .-more > button span {
    display: inline-block;
    transition: transform 0.2s;
  }
#nav-wrapper .tabs.--show-secondary .-primary .-more > button span {
    transform: rotate(180deg);
  }
#nav-wrapper .tabs .-secondary {
    max-width: 100%;
    min-width: 10em;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.3);
    animation: nav-secondary 0.2s;
  }
#nav-wrapper .tabs .-secondary li {
    border-top: 1px solid var(--lightgrey);
    background-color: #e4e4e4;
  }
#nav-wrapper .tabs .-secondary a, .tabs .-secondary button {
    padding: 0.6em;
    text-align: left;
  }
#nav-wrapper .tabs .-secondary a:hover, .tabs .-secondary button:hover {
    background-color: var(--lightgrey);
  }
#nav-wrapper .tabs .-secondary a:active, .tabs .-secondary button:active {
    background-color: var(--lightgrey);
  }
.section-title {
    margin-top: 2rem;
}
#nav-wrapper .tabs.--show-secondary .-secondary {
    display: block;
    list-style: none;
  }
  @keyframes nav-secondary {
    0% {
      opacity: 0;
      transform: translateY(-1em);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }