.nav-orders {
  margin-top: 24px;

  .account-nav {
    padding: 0;

    .accordion__header-text {
      color: $blue;
    }

    .accordion__header-text,
    .account-nav__link {
      font-size: 14px;
      font-weight: 500;
      line-height: 22px;
    }
  }

  &__wrap {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    border-bottom: 2px solid $gray;

    .link {
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      line-height: 22px;
      color: $gray-dark;
      transition: all .3s;

      &:hover {
        color: $blue;
      }
    }
  }

  &__item {
    padding: 7px 12px;
    position: relative;

    &.active {
      .link {
        color: $blue;
        pointer-events: none;
      }

      &::after {
        content: '';
        border-bottom: 2px solid $blue;
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
      }
    }
  }
}
