@charset "UTF-8";
:root {
  --body-padding: 32px;
}
@media screen and (min-width: 768px) {
  :root {
    --body-padding: 75px;
    --nav-padding: 15px;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 0.625rem;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 15px;
  }
}
.old-price {
  display: none;
}

body {
  overflow-x: hidden;
  background-color: #fff;
  margin: 0;
  font-family: Roboto;
  transition: padding-top 300ms;
}
body.bf .old-price {
  display: block;
}
body.menu-open {
  position: fixed;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media screen and (min-width: 0px) and (max-width: 575.98px) {
  .container {
    width: calc(100vw - 1.5rem);
  }
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  font-weight: normal;
}

p {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #1C1C1C;
  font-family: "Roboto";
}

ul {
  list-style: none;
  padding: 0;
}

li {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 300;
  color: #1C1C1C;
  font-family: "Roboto";
}

.blur {
  filter: blur(10px);
}

.text-center {
  text-align: center;
}

.padding-top-element {
  padding-top: 0 !important;
}

span.product-name-margin strong {
  display: inline-block;
  margin-bottom: 3px;
}
span.product-name-margin small {
  display: block;
  font-size: 75%;
  line-height: 1.2;
}

.mt {
  margin-top: 2rem !important;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100vw;
}
.menu .container {
  transition: opacity 300ms;
}
.menu.close {
  display: none;
}
.menu.close .container {
  opacity: 0;
}
.menu.open {
  display: block;
  background-color: rgba(232, 232, 232, 0.94);
}
.menu.open .container {
  opacity: 1;
}
.menu.animation-open {
  display: block;
  animation: openMenu 0.3s forwards;
}
.menu.animation-open .container {
  opacity: 1;
}
.menu.animation-close {
  display: block;
  animation: closeMenu 0.3s forwards;
}
.menu.animation-close .container {
  opacity: 0;
}
.menu-elements {
  display: flex;
  flex-direction: column;
}
.menu-element {
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
}
.menu-element__title {
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 17px;
  text-transform: uppercase;
  font-family: Lato;
  max-width: 80%;
}
.menu-element:before {
  content: "";
  display: block;
  bottom: 0;
  position: absolute;
  height: 1px;
  background-color: rgba(28, 28, 28, 0.04);
  left: -100%;
  right: -100%;
}
.menu-element__links {
  display: none;
}
.menu-element__links a {
  color: inherit;
  text-decoration: none;
}
.menu-element__links .menu-element--subelement {
  padding: 5px 0;
  position: relative;
  display: block;
  font-size: 1.3rem;
  line-height: 16px;
  color: #000;
  font-family: Lato;
}
.menu-element__links .menu-element--subelement:before {
  content: "";
  display: block;
  bottom: 0;
  position: absolute;
  height: 1px;
  background-color: rgba(28, 28, 28, 0.04);
  left: -100%;
  right: -100%;
}
.menu .links {
  position: relative;
  display: flex;
  align-items: center;
}
.menu .links:after {
  font-size: 2.125rem;
  position: absolute;
  font-weight: 100;
  right: 0;
}
.menu .links-close:after {
  content: "+";
}
.menu .links-open:after {
  content: "–";
}
.menu-categories {
  display: none;
}
.menu-category {
  position: relative;
}
.menu-category:before {
  content: "";
  display: block;
  bottom: 0;
  position: absolute;
  height: 1px;
  background-color: rgba(28, 28, 28, 0.15);
  left: -100%;
  right: -100%;
}
.menu-category__title {
  font-weight: 900;
  font-size: 0.81rem;
  text-transform: uppercase;
  font-family: Lato;
  max-width: 80%;
  line-height: 2.5rem;
  padding-left: 15px;
}
.menu-category__links {
  margin-top: 0;
}
.menu-category--subelement {
  padding-left: 15px;
  font-family: Lato;
}
.menu-category--subelement a {
  color: inherit;
  text-decoration: none;
}

@keyframes openMenu {
  0% {
    background-color: rgba(232, 232, 232, 0);
  }
  100% {
    background-color: rgba(232, 232, 232, 0.94);
  }
}
@keyframes closeMenu {
  0% {
    background-color: rgba(232, 232, 232, 0.94);
  }
  100% {
    background-color: rgba(232, 232, 232, 0);
  }
}
@media screen and (min-width: 576px) {
  .menu-element__links {
    position: static;
    max-width: unset;
    width: unset;
  }
}
.qnt-counter {
  display: flex;
  justify-content: center;
  align-items: center;
}
.qnt-counter--inline {
  display: inline-flex;
}
.qnt-counter--small {
  font-size: 0.875rem !important;
}
.qnt-counter--medium {
  font-size: 2rem !important;
}
.qnt-counter__button[disabled] {
  padding: 0 1px;
  opacity: 0.3;
  cursor: default;
}
.qnt-counter__button {
  flex: none;
  width: 0.8em;
  height: 0.8em;
  border: none;
  color: #F3F3F3;
  padding: 0.2em;
  font-size: 1.5em;
  font-weight: 900;
  background-color: #363636;
  color: #F3F3F3;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.qnt-counter__input {
  width: 2.5em;
  padding: 0.15em 0.15em 0;
  border: none;
  border-radius: 5px;
  background: none;
  text-align: center;
  color: inherit;
}
.qnt-counter__input:active, .qnt-counter__input:focus, .qnt-counter__input:focus-visible {
  outline: none;
}

.nav__products {
  display: none;
}

@media screen and (min-width: 992px) {
  body.menu-open {
    overflow: unset;
    position: static;
  }
}
#menu {
  max-width: 1375px;
  margin: 0 auto;
}

.notification_promo {
  background-color: #FF7E00;
  padding: 5px;
}
.notification_text {
  text-align: center;
}
.notification_text span {
  display: block;
  font-size: 20px;
  font-weight: 400;
  padding: 5px 0;
}
.notification_text span:first-of-type {
  font-size: 28px;
  font-weight: 600;
}
.notification_text_inner {
  font-size: 17px !important;
  font-weight: 400 !important;
  color: white;
}

.nav {
  background-color: #0F0F0F;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.nav .mb {
  margin-bottom: 1em;
}
.nav__blog a {
  text-decoration: none;
  font-size: 24px;
  transition: font-size 300ms ease-out;
  background: none;
  color: #b4b4b4;
  border: none;
  text-transform: uppercase;
  line-height: 32px;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 20px;
  cursor: pointer;
}
.nav__row {
  display: grid;
  grid-template-columns: 3.5rem 5fr 3.5rem 3.5rem 3.5rem;
  position: relative;
  align-items: center;
  flex-wrap: nowrap;
}
.nav__logo a {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  margin-top: auto;
}
.nav__logo img {
  max-width: 100%;
  width: auto;
  height: 22px;
  display: block;
}
.nav__flag {
  margin-left: auto;
}
.nav__flag button {
  background-color: transparent;
}
.nav__cart--button {
  display: flex;
  align-items: start;
}
.nav__cart--button button {
  cursor: pointer;
  margin-left: auto;
  position: relative;
  width: 26px;
  height: 26px;
  background-color: transparent;
  border: none;
  display: flex;
}
.nav__cart--button button:hover .cart-icon {
  fill: #fff;
}
.nav__cart--button .cart-icon {
  display: block;
  min-width: 26px;
  height: 26px;
  fill: #777777;
  position: relative;
  left: -50%;
  transition: 300ms;
  z-index: -1;
}
.nav__cart {
  position: absolute;
  top: 100%;
  bottom: calc(-100vh + 100%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 0;
  height: auto !important;
  overflow: visible !important;
  color: #000;
  line-height: 1;
  font-weight: 300;
  left: calc(100% - 23px);
  font-size: 12px;
  display: none;
  margin-top: 0px;
}
.nav__cart:before {
  content: "";
  position: absolute;
  bottom: 100%;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #777777 transparent;
  right: -11px;
  border-width: 0 8px 8px 8px;
}
.nav__cart__width-container {
  max-width: 46px;
  max-height: 100%;
  overflow: visible;
  height: auto;
  align-items: flex-end;
  flex-direction: column;
  display: flex;
}
.nav__cart__width-container.empty .nav__cart__wrapper--empty .nav__cart__empty {
  display: block;
}
.nav__cart__width-container.empty .nav__cart__footer {
  display: none;
}
.nav__cart__width-container.empty .nav__cart__details {
  display: none;
}
.nav__cart__wrapper {
  width: 100vw;
  min-width: 0;
  max-height: 100%;
  background-color: #e8e8e8;
  overflow-y: auto;
}
.nav__cart__details {
  display: table;
  min-width: 100%;
  text-transform: uppercase;
}
.nav__cart__row {
  display: table-row;
}
.nav__cart__row--header {
  background-color: #777777;
}
.nav__cart__row--product {
  text-transform: none;
}
.nav__cart__row .nav__cart__cell {
  border-bottom: 1px solid #c8c8c8;
}
.nav__cart__row:first-child .nav__cart__cell {
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav__cart__cell {
  display: table-cell;
  vertical-align: middle;
  padding: 7px 5px;
  text-align: center;
  width: 15%;
}
.nav__cart__cell:first-child {
  padding-left: 10px;
  text-align: left;
  white-space: normal;
  width: unset;
}
.nav__cart__cell:first-child span {
  display: block;
  color: #FF7E00;
  font-size: 0.9em;
  width: 85%;
}
.nav__cart__remove {
  cursor: pointer;
  position: relative;
  display: block;
  margin: 0 auto;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: none;
}
.nav__cart__remove:before, .nav__cart__remove:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  left: 0;
  height: 2px;
  background-color: #000;
}
.nav__cart__remove:before {
  transform: rotateZ(45deg);
}
.nav__cart__remove:after {
  transform: rotateZ(-45deg);
}
.nav__cart__footer {
  display: flex;
  background-color: #c8c8c8;
}
.nav__cart__shipping {
  flex-grow: 1;
  padding: 10px;
}
.nav__cart__button {
  min-width: 0;
  padding: 5px 10px;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #505050;
  color: #fff;
  text-decoration: none;
}
.nav__cart__empty {
  display: none;
  background-color: #777777;
  font-size: 1.25rem;
  text-align: center;
  color: #F3F3F3;
  padding: 10px;
}
.nav__cart-badge {
  position: relative;
  display: none;
  top: -3px;
  right: 100%;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #777777;
  text-align: center;
  color: #000;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
}
.nav .hamburger {
  width: 26px;
  height: 18px;
  position: relative;
  display: block;
  padding: 0;
  border: none;
  background: none;
}
.nav .hamburger--open .hamburger__line:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotateZ(45deg);
}
.nav .hamburger--open .hamburger__line:nth-child(3) {
  bottom: calc(50% - 1px);
  transform: rotateZ(-45deg);
}
.nav .hamburger--open .hamburger__line:nth-child(2) {
  opacity: 0;
}
.nav .hamburger__line {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  height: 2px;
  background-color: #F3F3F3;
  border-radius: 1px;
  transition: 0.3s;
}
.nav .hamburger__line:nth-child(1) {
  top: 0;
}
.nav .hamburger__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.nav .hamburger__line:nth-child(3) {
  bottom: 0;
}
.nav__lang {
  display: flex;
  color: #b4b4b4;
  align-items: inherit;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
}

.languages {
  position: absolute;
  top: 100%;
  bottom: calc(-100vh + 100%);
  left: calc(50% + 536px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 0;
  height: auto !important;
  overflow: visible !important;
  text-transform: uppercase;
}
.languages::before {
  content: "";
  position: absolute;
  right: 55px;
  bottom: 100%;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 12px 12px;
  border-color: #505050 transparent;
}
.languages__width-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 248px;
  height: auto;
  max-height: calc(100% - 15px);
  overflow: visible;
}
.languages__wrapper {
  flex-shrink: 0;
  width: -moz-max-content;
  width: max-content;
  max-height: 100%;
  padding: 7px 20px;
  background-color: #505050;
  overflow-y: auto;
}
.languages__element {
  display: block;
  color: #fff;
  padding: 7px 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  white-space: nowrap;
}
.languages__element--current {
  margin-bottom: 3px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.languages__element--link {
  opacity: 0.5;
  text-decoration: none;
}

.btn1 {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  top: 0px;
  left: 0px;
  transition-duration: 0.5s;
}
.btn1 .icon-left {
  transition-duration: 0.5s;
  position: absolute;
  height: 4px;
  width: 20px;
  top: 30px;
  background-color: #b4b4b4;
  left: 6px;
}
.btn1 .icon-left:before {
  transition-duration: 0.5s;
  position: absolute;
  width: 20px;
  height: 4px;
  background-color: #b4b4b4;
  content: "";
  top: -8px;
}
.btn1 .icon-left:after {
  transition-duration: 0.5s;
  position: absolute;
  width: 20px;
  height: 4px;
  background-color: #b4b4b4;
  content: "";
  top: 8px;
}
.btn1 .icon-left:hover {
  cursor: pointer;
}
.btn1 .icon-right {
  transition-duration: 0.5s;
  position: absolute;
  height: 4px;
  width: 20px;
  top: 30px;
  background-color: #b4b4b4;
  left: 20px;
}
.btn1 .icon-right:before {
  transition-duration: 0.5s;
  position: absolute;
  width: 20px;
  height: 4px;
  background-color: #b4b4b4;
  content: "";
  top: -8px;
}
.btn1 .icon-right:after {
  transition-duration: 0.5s;
  position: absolute;
  width: 20px;
  height: 4px;
  background-color: #b4b4b4;
  content: "";
  top: 8px;
}
.btn1.open .icon-left {
  transition-duration: 0.5s;
  background: transparent;
}
.btn1.open .icon-left:before {
  transform: rotateZ(45deg) scaleX(1) translate(1px, 1px);
}
.btn1.open .icon-left:after {
  transform: rotateZ(-45deg) scaleX(1) translate(1px, -1px);
}
.btn1.open .icon-right {
  transition-duration: 0.5s;
  background: transparent;
}
.btn1.open .icon-right:before {
  transform: rotateZ(-45deg) scaleX(1) translate(-1px, 1px);
}
.btn1.open .icon-right:after {
  transform: rotateZ(45deg) scaleX(1) translate(-1px, -1px);
}
.btn1:hover {
  cursor: pointer;
}

@media screen and (min-width: 576px) {
  .nav__cart {
    left: calc(50% + 244px);
    font-size: 14px;
  }
  .nav__cart:before {
    right: -22px;
  }
  .nav__cart__width-container {
    max-width: 52px;
  }
  .nav__cart__wrapper {
    width: auto;
    min-width: 540px;
  }
  .nav__cart__details {
    display: table;
    min-width: 100%;
    text-transform: uppercase;
  }
  .nav__cart__row:first-child .nav__cart__cell {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .nav__cart__cell {
    padding: 7px;
    text-align: center;
    width: 100px;
  }
  .nav__cart__cell:first-child {
    padding-left: 14px;
  }
  .nav__cart__shipping {
    padding: 14px;
  }
  .nav__cart__button {
    min-width: 150px;
    padding: 7px 14px;
    flex-shrink: 1;
  }
  .nav__cart__empty {
    min-width: 540px;
  }
  .nav__cart-badge {
    position: relative;
    display: none;
    top: -3px;
    right: 100%;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #777777;
    text-align: center;
    color: #000;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
  }
}
@media screen and (min-width: 769px) {
  .menu_blog {
    display: none;
  }
}
@media screen and (max-width: 991.98px) {
  .nav__lang span {
    display: none;
  }
  .nav__row {
    grid-template-columns: 3.5rem 2fr max-content 3rem 0.2fr;
  }
  .languages {
    left: calc(50% + 236px);
  }
}
@media screen and (max-width: 767.98px) {
  body {
    margin-top: 35px !important;
  }
  .nav__blog {
    display: none;
  }
  .nav__row {
    grid-template-columns: 3.5rem 2fr max-content 5rem 4.5rem;
  }
  .menu_blog {
    display: block;
  }
  .menu_blog a {
    font-weight: 900;
    font-size: 20px;
    line-height: 17px;
    text-transform: uppercase;
    font-family: Lato;
    max-width: 80%;
    text-decoration: none;
    color: #000;
  }
  .languages {
    left: calc(50% + 190px);
  }
}
@media screen and (max-width: 574.98px) {
  body {
    margin-top: 48px !important;
  }
  .nav__row {
    grid-template-columns: 3.5rem 2fr 5rem 7rem 2.5rem;
  }
  .nav {
    padding: 8px 0;
  }
  .nav .container {
    width: calc(100vw - 3.5rem);
  }
  .nav__cart::before {
    right: 21px;
  }
  .nav__cart--button button {
    margin-left: 0;
    margin: auto;
    margin-right: 22px;
  }
  .languages {
    left: calc(100% - 60px);
  }
}
:root {
  --summary-size: 0px;
}

.hero__actions .add-to-cart {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero__actions .add-to-cart__summary {
  font-size: var(--summary-size);
  display: flex;
  justify-content: end;
  font-weight: 700;
  grid-area: price;
  align-items: center;
}
.hero__actions .add-to-cart__button-block {
  grid-column: 1/3;
}
.hero__actions .add-to-cart__button {
  background-color: #2E2D2D;
  color: rgba(255, 255, 255, 0.75);
}
.hero__actions .add-to-cart__button:hover {
  color: #F3F3F3;
  background-color: #000;
}

.old-price {
  font-size: 0.6em;
  line-height: 1;
  white-space: nowrap;
  opacity: 1;
  color: rgba(100, 100, 100, 0.5);
  position: relative;
  margin-right: 0.3em;
}
.old-price:after {
  content: "";
  border-bottom: 2px solid #94191d;
  position: absolute;
  width: 110%;
  height: 50%;
  transform: rotate(-10deg) translateY(15%);
  left: -5%;
}

.add-to-cart {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  gap: 0.5rem 0.5rem;
  grid-template-areas: "colors colors" "quantity price" "select select" "button button" "promotion promotion";
  font-size: 1rem;
  position: relative;
}
.add-to-cart__promo {
  grid-area: promotion;
  padding: 2%;
  font-size: 1.1rem;
}
.add-to-cart__promo-price {
  font-weight: 700;
}
.add-to-cart__select {
  grid-area: select;
  position: relative;
  display: inline-block;
  border: 0.063rem solid #ccc;
  background-color: inherit;
}
.add-to-cart__select .display {
  padding: 0.625rem;
  border-bottom: 0.063rem solid #ccc;
  cursor: pointer;
  color: #ccc;
  position: relative;
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.add-to-cart__select .display .current {
  padding-right: 20%;
}
.add-to-cart__select .display .arrow {
  display: block;
  width: 20%;
  margin-left: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.add-to-cart__select .display .arrow:before, .add-to-cart__select .display .arrow:after {
  content: "";
  display: block;
  background-color: #777;
  position: absolute;
  top: 60%;
  width: 1.25rem;
  height: 3px;
  transform-origin: center;
}
.add-to-cart__select .display .arrow:before {
  transform: rotate(150deg) translateX(-45%);
  left: 40%;
}
.add-to-cart__select .display .arrow:after {
  transform: rotate(30deg) translateX(-45%);
  left: 40%;
}
.add-to-cart__select .options-container {
  width: 100%;
  max-height: 0;
  overflow-y: hidden;
  transition: max-height 0.3s ease-in-out;
  position: absolute;
  z-index: 10;
  background-color: #e5e5e5;
  color: #000;
  border: 1px #000 solid;
  border-top: none;
  left: -2px;
  width: calc(100% + 4px);
}
.add-to-cart__select .option {
  font-size: 1.25rem;
  line-height: 1.5rem;
  padding: 10px;
  cursor: pointer;
  background-color: inherit;
}
.add-to-cart__select .option:hover {
  background-color: #f7f7f7;
}
.add-to-cart__select .option.selected {
  background-color: #ffffff;
}
.add-to-cart__packs {
  grid-area: packs;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-bottom: 30px;
  max-width: 100%;
  padding: 10px 0;
  border-style: solid;
  border-width: 1px 0;
  border-color: rgba(0, 0, 0, 0.3);
}
.add-to-cart__packs-list {
  margin-left: auto;
  display: flex;
  gap: 10px 20px;
}
.add-to-cart__quantity {
  grid-area: quantity;
  justify-self: start;
  align-self: end;
  font-size: 1.5em;
}
.add-to-cart__quantity__button {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: none;
  font-size: 3rem;
  width: 3.75rem;
  height: 3.75rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  cursor: pointer;
}
.add-to-cart__quantity__button:disabled {
  cursor: default;
  opacity: 0.25;
}
.add-to-cart__quantity input {
  border: none;
  background-color: inherit;
  text-align: center;
  width: 2.5rem;
  font-size: 3.25rem;
}
.add-to-cart__price {
  grid-area: price;
  justify-self: end;
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.2em 0.5em;
  color: #2d2d2d;
  font-size: 1.3em;
  line-height: 1;
  font-weight: 700;
  height: 40px;
  font-size: 1.875rem;
  align-items: center;
}
.add-to-cart__button-block {
  grid-area: button;
  position: relative;
}
.add-to-cart__button {
  padding: 10px 10px;
  border: 1px solid #F3F3F3;
  background-color: #2d2d2d;
  color: #bebebe;
  font-size: 1.2em;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  transition: ease 300ms;
  min-height: 40px;
  cursor: pointer;
  width: 100%;
}
.add-to-cart__button svg {
  pointer-events: none;
}
.add-to-cart__button.unavailable {
  background-color: gray;
}
.add-to-cart--white {
  color: #F3F3F3;
}
.add-to-cart--white .add-to-cart__price {
  color: #F3F3F3;
}
.add-to-cart--white .add-to-cart__button {
  color: #F3F3F3;
  background-color: rgba(255, 126, 0, 0.8);
}
.add-to-cart--white .add-to-cart__button:hover {
  background-color: #FF7E00;
}
.add-to-cart--white .add-to-cart__quantity input {
  color: #F3F3F3;
}
.add-to-cart--white .add-to-cart__quantity__button {
  color: #2E2D2D;
  background-color: #DEDEDE;
}
.add-to-cart--white .add-to-cart__select .options-container {
  border-color: #E1E1E1;
  border-top: 0px;
}
.add-to-cart--white .add-to-cart__select .current {
  color: #E1E1E1;
}
.add-to-cart--white .add-to-cart .old-price {
  color: rgba(223, 219, 219, 0.24);
}
.add-to-cart__summary {
  font-size: var(--summary-size);
  display: flex;
  justify-content: end;
  font-weight: 700;
  grid-area: price;
  align-items: center;
}
.add-to-cart .currency {
  text-transform: uppercase;
}

.light .add-to-cart--white {
  color: #F3F3F3;
}
.light .add-to-cart--white .add-to-cart__price {
  color: #141615;
}
.light .add-to-cart--white .add-to-cart__button {
  color: #141615;
  background-color: rgba(225, 225, 225, 0.9);
}
.light .add-to-cart--white .add-to-cart__button:hover {
  background-color: #141615;
  color: #F3F3F3;
}
.light .add-to-cart--white .add-to-cart__quantity input {
  color: #F3F3F3;
}
.light .add-to-cart--white .add-to-cart__quantity__button {
  color: #2E2D2D;
  background-color: #DEDEDE;
}
.light .add-to-cart--white .add-to-cart__select .options-container {
  border-color: #E1E1E1;
  border-top: 0px;
}
.light .add-to-cart--white .add-to-cart__select .current {
  color: #141615;
}

.color-alert {
  position: absolute;
  top: -50px;
  right: 0;
  padding: 7px 14px;
  border: 1px #1C1C1C solid;
  background-color: #F3F3F3;
  display: none;
  color: #1C1C1C;
}
.color-alert:after {
  content: "";
  width: 12px;
  height: 12px;
  bottom: -7px;
  left: 18px;
  display: block;
  position: absolute;
  background-color: #F3F3F3;
  border-bottom: 1px #1C1C1C solid;
  border-right: 1px #1C1C1C solid;
  transform: rotate(45deg);
}

.other-tab .color-alert {
  top: auto;
  bottom: 0;
}

@media screen and (max-width: 1399.98px) {
  .products__grid .product-form .add-to-cart__summary {
    flex-direction: column;
  }
}
@media screen and (min-width: 992px) {
  .products__grid .product-form .add-to-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    border: 1px solid #000;
    color: #000;
    min-height: 63px;
  }
  .products__grid .product-form .add-to-cart__summary {
    font-size: 1.4rem;
    font-weight: 300;
  }
  .products__grid .product-form .add-to-cart__quantity {
    align-self: center;
    font-weight: 200;
  }
  .products__grid .product-form .add-to-cart__quantity button {
    background-color: #fff;
    color: #000;
    font-size: 1em;
    font-weight: 200;
  }
  .products__grid .product-form .add-to-cart__quantity button.add-to-cart__minus {
    font-size: 1.6em;
  }
  .products__grid .product-form .add-to-cart__button-block button {
    background-color: #fff;
    color: #000;
    border: 0px;
  }
  .products__grid .product-form .add-to-cart__button-block .cart_mobile {
    display: none;
  }
}
@media screen and (max-width: 991.98px) {
  .products__grid {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
  }
  .products__grid .product-form .add-to-cart {
    min-width: 230px;
  }
  .products__grid .product-form .add-to-cart__quantity {
    font-size: 1.5em;
  }
  .products__grid .product-form .add-to-cart__quantity .qnt-counter__button {
    font-size: 1.2em;
  }
  .products__grid .product-form .add-to-cart__quantity button.add-to-cart__minus {
    font-size: 1.2em;
  }
  .products__grid .product-form .add-to-cart__summary {
    font-size: 2rem;
    font-weight: 300;
  }
  .products__grid .product-form .add-to-cart__button-block .cart_desktop {
    display: none !important;
  }
  .products__grid .product-form .add-to-cart__button-block .cart_mobile {
    display: block !important;
  }
}
@media screen and (max-width: 575.98px) {
  .products__grid .product-form {
    width: 100%;
  }
  .products__grid .product-form .add-to-cart {
    min-width: auto;
    padding: 0;
  }
  .products__grid .product-form .add-to-cart__quantity {
    font-size: 1.5em !important;
  }
  .products__grid .product-form .add-to-cart__quantity .qnt-counter__button {
    font-size: 1.8em;
  }
  .products__grid .product-form .add-to-cart__quantity button.add-to-cart__minus {
    font-size: 1.8em;
  }
  .products__grid .product-form .add-to-cart input {
    width: 4.5rem;
  }
  .products__grid .product-form .add-to-cart__button-block button {
    font-size: 1.3em;
  }
  .products__grid .product-form .add-to-cart__summary {
    flex-direction: column;
    font-size: 1.7rem !important;
  }
  .add-to-cart__quantity input {
    width: 5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .add-to-cart__quantity__button {
    width: 3rem;
    height: 3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
.oos_modal {
  position: fixed;
  width: auto;
  height: auto;
  background-color: rgba(28, 28, 28, 0.5);
  top: 0;
  left: auto;
  z-index: 100;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-content {
  position: relative;
  height: 80%;
  display: block;
  background-color: #E1E1E1;
}

.modal .close-button {
  position: absolute;
  top: 0;
  right: 0;
}

.modal.show {
  display: flex;
}

.modal-backdrop {
  z-index: -1;
  opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-title {
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
  text-align: center;
}

.more-products__modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  min-height: calc(90% - 3.5rem);
  height: calc(95% - 3.5rem);
  max-width: calc(1320px - 1.5rem);
}

.more-products__modal .products__grid {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow-y: auto;
}

.more-products__modal .products__item {
  flex-direction: row;
  padding: 20px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.more-products__modal .products__item:nth-child(2n) {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.notice_bttn {
  background-color: #2d2d2d;
  color: rgb(250, 245, 245);
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  min-height: 30px;
  cursor: pointer;
  width: 30%;
  border: none;
  margin-top: 10px;
}

.email_input {
  display: block;
  max-width: 50%;
  color: #5f5f5f;
  background-color: transparent;
  width: 50%;
  border: 1px solid rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 38.5px;
  text-align: center;
}

.available-button {
  padding: 10px 10px;
  font-size: 1.2em;
  line-height: 1;
  font-weight: 700;
  transition: ease 300ms;
  min-height: 41px;
  cursor: pointer;
  width: 50%;
  text-transform: uppercase;
  border: 1px solid #2d2d2d;
  color: #bebebe;
  background-color: #2d2d2d;
  margin-bottom: 5px;
}

.btn-close {
  background: transparent;
  border: none;
  cursor: pointer;
}

.ntc_msg {
  vertical-align: middle;
  padding: 0rem 2rem;
  padding-bottom: 0.5rem;
  margin-top: 10px;
}

.more-products__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}

.oos_notice {
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
  align-items: baseline;
}

@media screen and (max-width: 1024px) {
  .oos_modal {
    width: 75%;
  }
}
@media screen and (max-width: 598px) {
  .email_input {
    width: 90%;
    max-width: 90%;
  }
  .available-button {
    width: 90%;
  }
}
.product-icons {
  margin-top: 2rem;
}
.product-icons__wrapper {
  display: grid;
  grid-template-columns: minmax(300px, 60%);
  justify-content: center;
  gap: 1rem;
  margin: 1rem auto;
}
.product-icons__element {
  display: flex;
  gap: 2px 10px;
  align-items: center;
}
.product-icons__description {
  font-size: 1.65rem;
  font-weight: 400;
  font-family: "Roboto";
  width: 80%;
}
.product-icons__image {
  min-width: 20%;
  width: -moz-max-content;
  width: max-content;
}
.product-icons__image img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 400px) {
  .product-icons__image {
    min-width: 100px;
  }
  .product-icons__image img {
    min-width: 100px;
  }
}
@media screen and (min-width: 576px) {
  .product-icons__wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .product-icons__image {
    min-width: unset;
  }
  .product-icons__image img {
    width: 80px;
  }
}
@media screen and (max-width: 399.98px) {
  .product-icons__image img {
    width: 80px;
  }
}
/* cookies notice --------------------------------------------------------------------- */
.new-cookies-popup {
  display: grid;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9020;
  place-items: center;
  padding: 10px;
  overflow: auto;
}
.new-cookies-notices {
  position: relative;
  box-sizing: border-box;
  z-index: 3000;
  width: calc(100% - 15px);
  max-width: 650px;
  height: 100%;
  max-height: calc(100vh - 90px);
  min-height: 200px;
  padding: 10px;
  color: #000;
  display: grid;
  grid-template-columns: 100%;
  place-content: center;
  place-items: center;
  transition: opacity 0.3s ease;
}
.new-cookies-notices:not(.is-open) {
  height: unset;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #ccc;
}
.new-cookies-notices:not(.is-open) .new-cookies-notice__container {
  position: static;
  background: transparent;
  padding: 0;
}
.new-cookies-notices.is-closed {
  opacity: 0;
  pointer-events: none;
}
.new-cookies-notice:not(.is-open) {
  height: unset;
  border-top: 1px solid #ccc;
}
.new-cookies-notice:not(.is-open) .new-cookies-notice__container {
  position: static;
  background: transparent;
  padding: 0;
}
.new-cookies-notice:not(.is-open) .new-cookies-notice__form {
  display: none;
}
.new-cookies-notice.is-closed {
  opacity: 0;
  pointer-events: none;
}
.new-cookies-notice__container {
  max-width: 100%;
  padding: 10px 20px;
  position: relative;
  background-color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}
.new-cookies-notice__close {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background: transparent;
  border: none;
  box-shadow: none;
}
.new-cookies-notice__close.show {
  display: block;
}
.new-cookies-notice__heading {
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1.5em;
  text-align: left;
  margin: 0;
  display: block;
}
.new-cookies-notice__heading a {
  text-decoration: underline;
  color: inherit;
}
.new-cookies-notice__heading a:visited, .new-cookies-notice__heading a:active {
  color: inherit;
}
.new-cookies-notice__message {
  display: block;
  margin-bottom: 10px;
  line-height: 1.5em;
  font-size: max(11px, 1.1em);
}
.new-cookies-notice__form, .new-cookies-notice__options {
  display: grid;
  gap: 10px;
}
.new-cookies-notice__form .new-cookies-notice__button, .new-cookies-notice__options .new-cookies-notice__button {
  text-transform: uppercase;
}
.new-cookies-notice__form {
  grid-template-columns: 100%;
}
.new-cookies-notice__options {
  grid-template-columns: repeat(2, minmax(1px, 1fr));
  margin-top: 10px;
}
.new-cookies-notice__option {
  padding: 8px 10px;
  border: 1px solid #ebebeb;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  top: unset;
  left: unset;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.new-cookies-notice__option input {
  z-index: 0;
  padding: 0;
  width: auto;
  margin: 0 5px 0 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: 14px;
  vertical-align: middle;
  visibility: visible;
}
.new-cookies-notice__buttons {
  margin-top: 10px;
  display: block;
}
.new-cookies-notice__buttons.hidden {
  display: none;
}
.new-cookies-notice__button {
  display: block;
  max-width: 100%;
  width: 100%;
  padding: 7px 15px;
  border: 1px solid #ddd;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  background-color: #fff;
  color: #222;
  margin-bottom: 10px;
  font-size: 1rem;
  text-align: center;
  transition: all 0.15s ease-in;
  box-sizing: border-box;
  line-height: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.new-cookies-notice__button__button:visited {
  color: #222;
}
.new-cookies-notice__button.btn-lg {
  padding: 10px 15px;
  margin: 0;
  font-size: 11px;
}
.new-cookies-notice__button:last-child {
  margin-bottom: 0;
}
.new-cookies-notice__button--accept-all {
  border-color: #222;
  background: #222;
  color: #fff;
}
.new-cookies-notice__button--accept-required {
  border-color: #ebebeb;
  color: #222;
}
.new-cookies-notice__button:hover, .new-cookies-notice__button:focus, .new-cookies-notice__button:active {
  color: #fff;
  background-color: #d4c09b;
  border-color: #d4c09b;
  text-decoration: none;
}

@media (min-width: 768px) {
  .new-cookies-notice__container {
    max-width: calc(100% - 40px);
  }
  .new-cookies-notice__form {
    grid-template-columns: repeat(3, minmax(1px, 1fr));
  }
  .new-cookies-notice__options {
    grid-template-columns: repeat(3, minmax(1px, 1fr));
    grid-column-end: span 3;
  }
}
@media (min-width: 460px) {
  .new-cookies-notice__buttons {
    text-align: center;
    margin: 10px 0 5px;
  }
  .new-cookies-notice__button {
    max-width: none;
    min-width: 130px;
    width: auto;
    display: inline-block;
    margin: 10px 10px 0 0;
    padding: 4px 10px 5px;
  }
  .new-cookies-notice__button:last-child {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .new-cookies-notice .new-cookies-notice__message {
    display: inline;
    vertical-align: middle;
  }
  .new-cookies-notice__buttons {
    display: block;
    vertical-align: middle;
    margin-left: 15px;
  }
}
@media (min-width: 1300px) {
  .new-cookies-notice:not(.is-open) .new-cookies-notice__container {
    width: 1175px;
  }
}
@media (max-width: 568px) {
  .new-cookies-notice__message {
    font-size: 0.75rem;
    line-height: 1.8em;
    margin-top: 10px;
  }
  .new-cookies-notice__heading {
    font-size: 1.5em;
  }
  .new-cookies-notice__button {
    font-size: 1.5rem;
    margin: 10px 0;
    width: 100%;
  }
  .new-cookies-notice__option {
    font-size: 13px;
  }
}
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-top: 1rem;
  flex-wrap: wrap;
}
.hero__images {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 345px;
}
.hero__image__container.loading .loader {
  display: block;
  visibility: visible;
  display: block;
  top: 40%;
  left: 50%;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 0.5s forwards 0.5s, mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}
.hero__image__container.loading .hero__image__block img {
  filter: blur(5px);
}
.hero__image__container video {
  max-width: 100%;
  max-height: 456px;
}
.hero__image__block {
  position: relative;
  max-width: 500px !important;
  width: 100%;
}
.hero__image__block img {
  width: auto !important;
}
.hero__dots {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-height: 0;
  height: 100%;
  gap: 5px;
}
.hero__dots::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
.hero__dot {
  cursor: pointer;
  border: 1px solid rgba(112, 112, 112, 0.5);
  max-width: 70px;
  max-width: 25vw;
  width: auto;
  height: auto;
}
.hero__dot.active {
  border-color: #1C1C1C;
}
.hero__dot img {
  width: auto;
  display: block;
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
}
.hero__description {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  min-height: 263px;
}
.hero__description .slogan {
  width: 100%;
  order: 0;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  padding-top: 1rem;
  position: relative;
  font-weight: 900;
  min-height: 33px;
}
.hero__description .slogan:before {
  content: "";
  display: block;
  height: 2px;
  background-color: #000;
  top: 0;
  left: 0;
  position: absolute;
  width: 35%;
}
.hero__description .capacity {
  font-size: 1.5rem;
  line-height: 1.5;
}
.hero__description .capacity strong {
  font-weight: 900;
}
.hero__description .mark_name {
  order: -1;
  width: 100%;
}
.hero__description .mark_name span {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero__description .mark_name {
  font-family: "Roboto";
}
.hero__description .mark_name strong {
  display: block;
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 100;
  letter-spacing: 0.15em;
  color: #000;
}
.hero__description .variants {
  font-size: 1.25rem;
  font-weight: 300;
  padding: 1rem 0 1rem;
  border-top: 1px #000 solid;
  border-bottom: 1px #000 solid;
  min-height: 37px;
}
.hero__description .product__variant {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.hero__description .product__variant.large .product__variant__block {
  min-width: 40px;
}
.hero__description .product__variant__block {
  background-color: #DEDEDE;
  padding: 5px 7px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 300;
  cursor: pointer;
}
.hero__description .product__variant__block.active {
  background-color: rgba(225, 131, 160, 0.9);
  color: #F3F3F3;
}
.hero__description .product__variants__title {
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 7px 0;
}
.hero__description .product__variants__title:first-child {
  margin-top: 0;
}

@media screen and (max-width: 991.98px) {
  .hero__images {
    align-items: flex-start;
  }
}
@media screen and (min-width: 350px) {
  .hero__dot {
    max-width: 20vw;
  }
}
@media screen and (min-width: 400px) {
  .hero__dot {
    max-width: 15vw;
  }
}/*# sourceMappingURL=accessories-critical.css.map */