.nd-sidebar__item {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: $default-spacing;
  transition: $default-transition;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  color: $white;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);

  @media screen and (min-width: 700px) {
    flex-direction: column;
    min-height: 75px;
    border-right: 0;

    &::after {
      display: block;
    }
  }

  &:hover,
  &.active {
    background: var(--nd-color-primary);
  }

  &::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.2)
    );
    z-index: 2;
    display: none;
  }
}

.nd-sidebar__item-icon {
  @include rem(11);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.2);
}

.nd-sidebar__item-label {
  @include rem(8);
  line-height: 0.625rem;
  font-weight: 700;
  color: $white;
  text-transform: uppercase;
  padding: $default-spacing;
  text-decoration: none;
  letter-spacing: 0.4px;
  text-align: center;

  a & {
    text-decoration: none;
  }
}
