/* dropdown */
.dropdown-menu {
  width: 200px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  color: #8b8f98;
  font-family: 'Avenir W01', Arial, sans-serif;
}
.dropdown-menu button {
  height: 100%;
  border-radius: 4px;
  background-color: #fff;
  padding: 3px 20px;
  text-align: left;
  line-height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid #d6d6d6;
  width: 100%;
  outline: 0;
  color: #2f4252;
  font-weight: bold;
  font-size: 14px;
}

.dropdown-menu button::after {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  content: '\f107';
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';
  position: absolute;
}

.dropdown-menu ul {
  position: absolute;
  z-index: 999;
  left: 0;
  top: 100%;
  margin: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #d6d6d6;
  border-top: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  padding: 15px 0px;
  display: none;
  border-radius: 0 0 4px 4px;
  max-height: 500px;
  overflow: auto;
}

.dropdown-menu ul .option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0 20px;
  gap: 5px;
}

.dropdown-menu ul .option:hover {
  background: rgba(41, 128, 185, 0.2);
}

.dropdown-menu .option {
  height: 25px;
  line-height: 25px;
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  font-size: 14px;
}

.dropdown-menu.active ul.dropdown-content {
  display: block;
}

.dropdown-menu.active button {
  border-radius: 4px 4px 0 0;
}

/* Sub headers */
.handbook-wrapper h6[data-style='sub-header-1'],
.handbook-wrapper h6[data-style='sub-header-2'],
.handbook-wrapper h6[data-style='sub-header-3'] {
  text-align: center;
}

.handbook-wrapper h6[data-style='sub-header-1'] {
  font-size: 30rem;
  margin-bottom: 30px;
}

.handbook-wrapper h6[data-style='sub-header-2'] {
  font-size: 25rem;
  margin-bottom: 25px;
}

.handbook-wrapper h6[data-style='sub-header-3'] {
  font-size: 20rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .handbook-wrapper h6[data-style='sub-header-1'] {
    margin-bottom: 20px;
  }

  .handbook-wrapper h6[data-style='sub-header-2'] {
    margin-bottom: 15px;
  }

  .handbook-wrapper h6[data-style='sub-header-3'] {
    margin-bottom: 10px;
  }

  .dropdown-menu button {
    padding: 3px 15px;
  }

  .dropdown-menu ul .option {
    padding: 0 10px 0 15px;
  }
}

@media screen and (max-width: 540px) {
  .dropdown-menu button,
  .dropdown-menu ul .option {
    font-size: 13px;
  }
}
/* End headers */
