.sideNav {

&--fixed {
  transform: translateZ(0);
  position: fixed;
  top: 100px;
}

&__list {
  list-style-type: none;
  margin-bottom: 26px;
}

&__title {
  color: $heading-color;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

&__listItem {
  margin: 0;
  line-height: 14px;
}

&__link {
  color: $text-color;
  font-size: 14px;
  border: 0;
  padding: 8px 0;
  display: block;

  &:hover,
  &:focus,
  &:active,
  &--active {
    color: $primary-color;
    border: 0;
    outline: none;
  }
}

}