.nav {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  display: -ms-flexbox;
  display: flex;
  width: 1043px;
  margin-right: 20px;
}
.nav__list {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.nav__item {
  -ms-flex: unset;
      flex: unset;
  -ms-flex-pack: center;
      justify-content: center;
  display: -ms-flexbox;
  display: flex;
}
.nav__item--hover {
  background-color: #fff;
}
.nav__item--hover > span,
.nav__item--hover > .nav__expanded-link > span {
  color: #000;
}
.nav__item--hover > span::after,
.nav__item--hover > .nav__expanded-link > span::after {
  opacity: 0;
}
.nav__item--vue {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  -ms-flex-pack: center;
      justify-content: center;
  display: -ms-flexbox;
  display: flex;
}
.nav__item--mobile {
  display: none;
}
.nav__link {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-family: 'DINCondensed', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  transition: 0.5s;
  padding: 0 4px 0 3px;
  box-sizing: border-box;
  font-size: 1.2rem;
  letter-spacing: 0.6px;
}
.nav__link:hover {
  background-color: #fff;
  color: #000;
}
.nav__link:hover span {
  color: inherit;
}
.nav__title {
  position: relative;
  color: #fff;
  font-family: 'DINCondensed', sans-serif;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: default;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 1.2rem;
}
.nav__title::after {
  content: '';
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 9px;
  height: 6px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='9' height='6' viewBox='0 0 9 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.947 1.366L7.634.053a.197.197 0 0 0-.268 0L4.502 2.917 1.637.053a.197.197 0 0 0-.268 0L.056 1.366a.188.188 0 0 0 0 .268l4.31 4.314c.074.07.197.07.272 0l4.31-4.314c.03-.04.052-.079.052-.132a.219.219 0 0 0-.053-.136z' fill='%23ED0F00' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity .2s;
}
.nav__expanded-link {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 4px 0 2px;
  box-sizing: border-box;
}
.nav .visually-hidden {
  display: none;
}
@media (min-width: 1025px) {
  .nav__expanded-link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
  }
}
@media (max-width: 1024px) {
  .nav__link,
  .nav__title {
    font-size: 1.2rem;
    white-space: nowrap;
  }
  .nav__expanded-link,
  .nav__link {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 60px;
    background-color: #f4f4f4;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    overflow: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    height: calc(100% - 60px);
    z-index: 30;
    margin-right: 0;
  }
  body.toolbar-vertical .nav {
    top: 99px;
    height: calc(100% - 99px);
  }
  body.toolbar-vertical .layout--with-banner .region-sticky:not(.region-sticky--hide-banner) .nav {
    top: 299px;
    height: calc(100% - 299px);
  }
  .layout--with-banner .region-sticky:not(.region-sticky--hide-banner) .nav {
    top: 260px;
    height: calc(100% - 260px);
  }
  .nav__list {
    -ms-flex-direction: column;
        flex-direction: column;
    display: block !important;
  }
  .nav__list--show-submenu {
    transform: translate3d(-100%, 0, 0);
  }
  .nav.slide-right-leave-active .nav__list {
    transform: translate3d(0, 0, 0);
  }
  .nav.slide-right-leave-active .sub-menu {
    left: 0;
  }
  .nav__item {
    -ms-flex-pack: start;
        justify-content: flex-start;
    border-bottom: 1px #e1e1e1 solid;
  }
  .nav__item--cart {
    border-bottom: 0;
  }
  .nav__item--cart .nav__link {
    color: #8D8D8D;
  }
  .nav__item--cart .nav__link:after {
    content: attr(data-cart);
    color: #ed0f00;
    margin-left: 4px;
  }
  .nav__item--cart:active .nav__link {
    background-color: #f4f4f4;
    color: #000;
  }
  .nav__item--mobile {
    display: block;
  }
  .nav__item--desktop {
    display: none;
  }
  .nav__item--hover {
    background-color: transparent;
  }
  .nav__item--hover > span::after {
    opacity: 1;
  }
  .nav__link,
  .nav__title {
    position: relative;
    color: #000;
    font-size: 1.6rem;
    padding: 22px 20px;
    transition: background .2s;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    -ms-flex-pack: start;
        justify-content: flex-start;
    cursor: pointer;
    letter-spacing: 0.8px;
  }
  .nav__link:hover,
  .nav__title:hover {
    background-color: #f4f4f4;
  }
  .nav__link:active,
  .nav__title:active {
    background-color: #e6e6e6;
  }
  .nav__title::after {
    left: auto;
    right: 20px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='16' viewBox='0 0 10 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.569 0L0 1.516 6.707 8 0 14.484 1.568 16l8.278-8z' fill-rule='nonzero' fill='%23ED0F00'/%3E%3C/svg%3E");
    top: calc(50% - 8px);
    width: 10px;
    height: 16px;
  }
  .nav--open {
    display: block;
  }
  .nav--close {
    display: none;
  }
}
.disable-animation .nav__link {
  transition: none;
}
@media (max-width: 768px) {
  .disable-animation .nav__link,
  .disable-animation .nav__title {
    transition: none;
  }
}
