@import '../e-commerce.scss';

::ng-deep.profile-tabs {
  border-bottom: 0;
  .nav-item {
    margin-bottom: -0px;

    .nav-link {
      position: relative;
      padding: 0.7rem 0;
      margin: 0 1rem;
      font-weight: 500;
      color: $gray-900;
      display: inline-flex;
      align-items: center;
      i {
        font-size: 14px;
      }
      .material-icons-two-tone {
        font-size: 20px;
      }
      &:after {
        content: '';
        background: var(--bs-primary);
        position: absolute;
        transition: all 0.3s ease-in-out;
        left: 50%;
        right: 50%;
        bottom: -1px;
        height: 2px;
        border-radius: 2px 2px 0 0;
      }
    }
  }

  .nav-link:hover {
    border-color: transparent;
    color: var(--bs-primary);
    .material-icons-two-tone {
      background-color: var(--bs-primary);
    }
  }

  .nav-item.show .nav-link,
  .nav-link.active {
    border-color: transparent;
    background: transparent;
    color: var(--bs-primary);
    .material-icons-two-tone {
      background-color: var(--bs-primary);
    }
    &:after {
      left: 0;
      right: 0;
    }

    .badge {
      background: var(--bs-primary-light);
      color: var(--bs-primary);
    }
  }
}
