.nav {
  color: #121212;
  font-size: 20px;
  position: -webkit-sticky;
  position: sticky;
}
.nav__container {
  width: 960px;
}
.nav__empty-cell {
  min-width: 184px;
}
.nav__list {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav__list-item {
  padding: 10px 0;
  position: relative;
  cursor: pointer;
}
.nav__list-item:nth-last-child(n+6):hover, .nav__list-item--active:nth-last-child(n+6) {
  color: #EE2B45;
}
.nav__list-item:nth-last-child(n+6):hover::before, .nav__list-item--active:nth-last-child(n+6)::before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 1px;
  left: 0;
  background-color: #EE2B45;
}
.nav__list-item--active:last-child .nav__burger-icon > div, .nav__list-item--actvie:last-child:hover .nav__burger-icon > div {
  background-color: #EE2B45;
}
.nav__list-item--with-undefined-auth-state > [data-auth-dependent] {
  display: block;
  visibility: hidden;
  width: 0;
  height: 0;
}
.nav__list-item#user-profile-popup {
  display: none;
}
.nav__icon-circle {
  width: 43px;
  height: 43px;
  border: 2px solid #EE2B45;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}
.nav__user-icon, .nav__handset-icon {
  display: none;
}
.nav__search-icon {
  width: 20px;
}
.nav__search-icon > circle, .nav__search-icon > path {
  stroke-width: 2.5px;
  stroke: #EE2B45;
}
.nav__burger-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.nav__burger-icon > div {
  height: 2px;
  width: 18px;
  background-color: #0D0D0D;
  border-radius: 3px;
}

li.nav__list-item[data-new]::after {
    display: inline-block;
    content: "new";
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    background-color: #EE2B45;
    border-radius: 8px;
    padding: 4px;
    vertical-align: text-top;
    color: #fff;
}