.navLink {
  height: 2.777777vw;
  min-height: 28px;
  max-height: 40px;
  border-radius: 20px;
  background-color: transparent;
  display: flex;
  align-items: center;
  color: var(--main-text-color);

  &:hover {
    background-color: rgba(255, 255, 255, 0.28);
    color: var(--main-text-color);
  }

  &_active {
    background-color: #ffffff;
    &:hover {
      background-color: white;
    }
  }
  transition: background-color .5s;
}


.label {
  padding: 0 20px;
  display: flex;
  align-items: baseline;
  font-size: 1.041666vw;
  position: relative;
  @media screen and (max-width: 1100px) {
    font-size: 12px;
  }
  @media screen and (min-width: 1680px) {
    font-size: 18px;
  }

  &_active {
    background-color: #ffffff;
  }

  &__text {
    margin-left: 16.6px;
    color: #000000;
    opacity: 0.8;

    &_active {
      font-family: SBSansInterface-Bold;
      color: #000000;
    }
  }
}

.icon {
  width: 16px;
  height: 16px;
  margin-right: calc(3 * var(--xxs-px));

  &_active {
    background-color: aliceblue;
  }
}

.subList {
  width: 80%;
  align-self: flex-end;
}