.nav-dropdown {
  padding: (16em / 16) 0;
  border-radius: (4em / 16);
  @include breakpoint(medium up) {
    box-shadow: 0 0 (12em / 16) 0 rgba(0, 0, 0, 0.1);
  }

  .heading {
    font-size: (13em / 16);
    padding: (12em / 13);
    font-weight: 600;
    line-height: (16em / 13);
    text-transform: uppercase;

    &.mobile {
      position: relative;
    }
  }

  .nav-item {
    color: $charcoal;
    display: block;
    width: 100%;
    text-align: left;
    font-size: (14em / 16);
    padding: (17em / 14) (12em / 14) (16em / 14) (41em / 14);
    position: relative;
    line-height: (17em / 14);
    font-weight: bold;
    border-bottom: 1px solid $off-white;

    &[disabled], &[disabled]:hover, &[disabled]:active {
      cursor: not-allowed;
      color: $light-grey;
      background-color: transparent;

      .material-icons {
        color: $light-grey !important;
      }
    }

    .notification-dot {
      margin-left: 4px;
      margin-top: -2px;
    }

    &.hover,
    &:hover {
      background-color: $mint;
      color: $white;
      cursor: pointer;

      .material-icons {
        color: $white;
      }
    }

    .material-icons {
      font-size: (20em / 16);
      position: absolute;
      left: (12em / 16);
      top: 50%;
      transform: translateY(-50%);
    }

    .icon-right .material-icons {
      left: auto;
      right: (12em / 16);
    }
  }

  .nav-button {
    padding: 0 (12em / 16);
    button {
      margin-bottom: 8px;
    }

    &.spacing-margin-mobile_80 {
      margin-bottom: 80px;
    }

    .no-margin {
      margin: 0;
    }
  }

  .nav-submenu-container {
    position: relative;

    .submenu-position {
      position: absolute;
      right: 8px;
      @include breakpoint(small only) {
        z-index: 20;
        position: unset;
      }

      .nav-dropdown {
        top: 0;
        left: 20px;
      }
    }
  }

  .nav-dropdown-items {
    .checkbox-card label {
      border-radius: 0;
    }

    &:first-child .checkbox-card:first-child label,
    &:first-child .nav-item:first-child {
      border-top-left-radius: 0.25em;
      border-top-right-radius: 0.25em;
      border-top: none;
    }

    &:last-child .checkbox-card:last-child label,
    &:last-child .nav-item:last-child {
      border-bottom-left-radius: 0.25em;
      border-bottom-right-radius: 0.25em;
    }
  }

}

.line-height-16 {
  line-height: 16px !important;
}

.search-mobile-button-dropdown {
  height: 40px;
  overflow: hidden;
  @include breakpoint(small only) {
    margin-top: 16px;
  }

  .heading {
    font-size: (13em / 16);
    padding: (12em / 13);
    font-weight: 600;
    line-height: (16em / 13);
    text-transform: uppercase;

    &.mobile {
      position: relative;
    }
  }
}

.notification-dot-fat {
  position: absolute;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid white;
  background-color: $rose;
  right: -10px;
  top: 0;
}