.commerce-nav {
  text-align: center;
  pointer-events: all;
}
.commerce-nav__products {
  width: 100px;
  position: relative;
}
.commerce-nav__list {
  border: 1px solid #e5e8e7;
  background-color: #fff;
  box-sizing: border-box;
  visibility: hidden;
  max-height: 0;
  opacity: 0;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 3;
  transition: opacity 0.5s ease-in-out;
  top: 40px;
}
.commerce-nav__list li {
  border-bottom: 1px solid #e2e2e2;
  box-sizing: border-box;
}
.commerce-nav__list li:last-child {
  border-bottom-color: #eee;
}
.commerce-nav__list a {
  color: #fff;
  font-size: 1.8rem;
  padding: 21px 27px;
  background-color: #ed0f00;
  transition: background-color 0.4s linear;
  font-family: 'DINCondensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  box-sizing: border-box;
  letter-spacing: 0.8px;
  cursor: pointer;
  border: none;
  border-radius: 0;
  -webkit-tap-highlight-color: transparent;
  font-size: 1.2rem;
  color: #000;
  background-color: rgba(238, 238, 238, 0.92);
  letter-spacing: 0.3px;
  padding: 14px;
  width: 100%;
  text-align: center;
}
.commerce-nav__list a:hover {
  background-color: #ff2b1d;
}
.commerce-nav__list a[disabled] {
  opacity: 1;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 768px) {
  .commerce-nav__list a {
    font-size: 1.6rem;
    padding: 22px 27px;
  }
}
@media (hover: none), (pointer: coarse) {
  .commerce-nav__list a:hover {
    background-color: #ed0f00;
  }
  .commerce-nav__list a:active {
    background-color: #ff2b1d;
  }
}
.commerce-nav__list a:hover,
.commerce-nav__list a:active {
  background-color: rgba(230, 230, 230, 0.92);
}
.commerce-nav__title {
  color: #fff;
  font-size: 1.8rem;
  padding: 21px 27px;
  background-color: #ed0f00;
  transition: background-color 0.4s linear;
  font-family: 'DINCondensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  box-sizing: border-box;
  letter-spacing: 0.8px;
  border: none;
  border-radius: 0;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  cursor: pointer;
  white-space: nowrap;
  font-size: 1.4rem;
  padding: 13px 21px;
}
.commerce-nav__title:hover {
  background-color: #ff2b1d;
}
.commerce-nav__title[disabled] {
  opacity: 1;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 768px) {
  .commerce-nav__title {
    font-size: 1.6rem;
    padding: 22px 27px;
  }
}
@media (hover: none), (pointer: coarse) {
  .commerce-nav__title:hover {
    background-color: #ed0f00;
  }
  .commerce-nav__title:active {
    background-color: #ff2b1d;
  }
}
.commerce-nav__close {
  opacity: 0;
  position: absolute;
  top: 9px;
  right: 17px;
  padding: 11px;
  cursor: pointer;
  transition: opacity 0.2s linear;
}
.commerce-nav__close::before,
.commerce-nav__close::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 1px;
  left: 4px;
  top: 11px;
  background-color: #fff;
  transform: rotate(45deg);
  transition: transform 0.2s linear;
}
.commerce-nav__price {
  display: none;
}
.commerce-nav--open .commerce-nav__list {
  opacity: 1;
  visibility: visible;
  max-height: 100vh;
}
@media (max-width: 768px) {
  .commerce-nav__products {
    width: 100%;
  }
  .commerce-nav__list {
    background: rgba(255, 255, 255, 0.92);
    display: none;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: static;
    opacity: 1;
  }
  .commerce-nav__list li {
    width: 50%;
    border-right: 1px solid #e2e2e2;
  }
  .commerce-nav__list li:nth-child(2n) {
    border-right: none;
  }
  .commerce-nav__list li:last-child {
    border-bottom-color: #e2e2e2;
  }
  .commerce-nav__list a {
    padding: 15px 14px 29px;
    font-size: 1.6rem;
    letter-spacing: 0.8px;
  }
  .commerce-nav__title {
    padding: 0;
    letter-spacing: 1.12px;
    position: relative;
    font-size: 1.6rem;
    line-height: 28px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    height: 40px;
  }
  .commerce-nav__price {
    display: block;
    font-size: 1.2rem;
    line-height: 26px;
    margin-top: -26px;
    position: relative;
    top: -4px;
    pointer-events: none;
  }
  .commerce-nav__price-old {
    color: #9b9b9b;
    text-decoration: line-through;
    margin-right: 2px;
  }
  .commerce-nav[nav-hide-with-element] {
    visibility: hidden;
    pointer-events: none;
  }
  .commerce-nav--show-block[nav-hide-with-element] {
    visibility: visible;
    pointer-events: all;
  }
  .commerce-nav--open .commerce-nav__list {
    display: -ms-flexbox;
    display: flex;
  }
  .commerce-nav--open .commerce-nav__close {
    opacity: 1;
  }
  .commerce-nav--open .commerce-nav__close::after {
    transform: rotate(135deg);
  }
}
