@keyframes bounce {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  0%,
    20%,
    53%,
    80%,
    100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  20%,
    53%,
    80%,
    100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
    43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.count_changer {
  display: flex;
}
.count_changer__input {
  font-size: 0.76471rem;
  line-height: 1.30769em;
  height: 2.6rem;
  width: 2.6rem;
  border: 1px solid #c4c4c4;
  text-align: center;
}
.count_changer__button {
  transition: background-color 0.2s;
  border: 1px solid #c4c4c4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  cursor: pointer;
}
.count_changer__button:hover {
  background-color: #f0f0f0;
}
.count_changer__button > span {
  display: none;
}
.count_changer__button::after {
  content: "";
  display: block;
  height: 9px;
  width: 9px;
  background: no-repeat center center / contain;
}
.count_changer__button--minus {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-right-width: 0;
}
.count_changer__button--minus::after {
  background-image: url("/media/img/ico-minus.svg");
}
.count_changer__button--plus {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-left-width: 0;
}
.count_changer__button--plus::after {
  background-image: url("/media/img/ico-plus.svg");
}
.count_changer__button:active::after {
  transform: scale(1.2);
}

.rendering_options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}
.rendering_options .fake_checkbox__label {
  transition: color 0.2s;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.rendering_options .fake_checkbox:hover .fake_checkbox__label {
  color: #e29400;
}

.tire_price {
  text-align: center;
}
.tire_price__value, .tire_price__vat {
  display: block;
}
.tire_price__value {
  font-weight: 700;
}
.tire_price__vat {
  font-size: 0.76471rem;
  line-height: 1.30769em;
}

.tire_store_count {
  font-weight: 700;
  font-size: 0.76471rem;
  line-height: 1.30769em;
  padding: 0.2em 0.7em;
  border: 1px solid #c4c4c4;
  border-radius: 3px;
  white-space: nowrap;
}

.sticker {
  background-color: #ffe038;
  border-radius: 3px;
  padding: 0.3em 0.7em;
}
.stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.top_gallery_slides {
  min-height: 14rem;
  width: 100%;
}
.top_gallery_slides .slick-track {
  display: flex;
}
.top_gallery_slides .slick-list {
  overflow: hidden;
}
.top_gallery_slides .slick-slide {
  float: none;
  height: auto;
}
.top_gallery_slides .nwjs_carousel {
  overflow: hidden;
}
.top_gallery_slides .picture_tag_image {
  margin-left: auto;
  margin-right: auto;
  max-height: 90vh;
}
.top_gallery_slides .picture_tag_image picture {
  display: block;
  height: 100%;
}
@media only screen and (min-width: 1001px) {
  .top_gallery_slides .picture_tag_image picture {
    overflow: hidden;
    position: relative;
  }
  .top_gallery_slides .picture_tag_image picture img {
    display: block;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: contain;
    max-height: initial;
    max-width: initial;
  }
}
@media only screen and (max-width: 1000px) {
  .top_gallery_slides .picture_tag_image picture {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
  }
  .top_gallery_slides .picture_tag_image picture img {
    display: block;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: contain;
    max-height: initial;
    max-width: initial;
  }
}
.top_gallery_slides .picture_tag_image.no_ico {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.top_gallery_slides .picture_tag_image.no_ico picture {
  max-width: 200px;
  width: 100%;
}
.top_gallery_slides,
.top_gallery_slides .slick-list,
.top_gallery_slides .slick-track,
.top_gallery_slides .gallery_slide,
.top_gallery_slides .picture_tag_image {
  height: 100%;
}
.top_gallery_slides:not(.slick-initialized) > *:not(:first-child) {
  display: none;
}

.bottom_gallery_slides .slick-track {
  display: flex;
}
.bottom_gallery_slides .slick-list {
  overflow: hidden;
}
.bottom_gallery_slides .slick-slide {
  float: none;
  height: auto;
}
.bottom_gallery_slides .nwjs_carousel {
  overflow: hidden;
}
.bottom_gallery_slides:not(.slick-initialized) {
  display: flex;
  justify-content: flex-start;
}
.bottom_gallery_slides:not(.slick-initialized) > * {
  display: none;
}
@media only screen and (min-width: 1001px) {
  .bottom_gallery_slides:not(.slick-initialized) > *:nth-child(-n + 5) {
    display: flex;
    width: 20%;
  }
}
@media only screen and (min-width: 751px) and (max-width: 1000px) {
  .bottom_gallery_slides:not(.slick-initialized) > *:nth-child(-n + 8) {
    display: flex;
    width: 12.5%;
  }
}
@media only screen and (min-width: 621px) and (max-width: 750px) {
  .bottom_gallery_slides:not(.slick-initialized) > *:nth-child(-n + 7) {
    display: flex;
    width: 14.28571%;
  }
}
@media only screen and (min-width: 501px) and (max-width: 620px) {
  .bottom_gallery_slides:not(.slick-initialized) > *:nth-child(-n + 6) {
    display: flex;
    width: 16.66667%;
  }
}
@media only screen and (min-width: 371px) and (max-width: 500px) {
  .bottom_gallery_slides:not(.slick-initialized) > *:nth-child(-n + 5) {
    display: flex;
    width: 20%;
  }
}
@media only screen and (max-width: 370px) {
  .bottom_gallery_slides:not(.slick-initialized) > *:nth-child(-n + 4) {
    display: flex;
    width: 25%;
  }
}
@media only screen and (min-width: 1001px) {
  .bottom_gallery_slides[data-count='5'] {
    border-right: 1px solid #c4c4c4;
  }
}
@media only screen and (min-width: 751px) and (max-width: 1000px) {
  .bottom_gallery_slides[data-count='8'] {
    border-right: 1px solid #c4c4c4;
  }
}
@media only screen and (min-width: 621px) and (max-width: 750px) {
  .bottom_gallery_slides[data-count='7'] {
    border-right: 1px solid #c4c4c4;
  }
}
@media only screen and (min-width: 501px) and (max-width: 620px) {
  .bottom_gallery_slides[data-count='6'] {
    border-right: 1px solid #c4c4c4;
  }
}
@media only screen and (min-width: 371px) and (max-width: 500px) {
  .bottom_gallery_slides[data-count='5'] {
    border-right: 1px solid #c4c4c4;
  }
}
@media only screen and (max-width: 370px) {
  .bottom_gallery_slides[data-count='4'] {
    border-right: 1px solid #c4c4c4;
  }
}
.bottom_gallery_slides .picture_tag_image {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
}
.bottom_gallery_slides .picture_tag_image img {
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  object-fit: contain;
  max-height: initial;
  max-width: initial;
}
.bottom_gallery_slides .gallery_slide {
  border: 1px solid #c4c4c4;
  padding: 0.5rem;
  position: relative;
  cursor: pointer;
}
.bottom_gallery_slides .slick-arrow {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  cursor: auto;
  border-width: 0;
  font-size: inherit;
  line-height: inherit;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  position: absolute;
  left: calc(50% - 1.5rem);
  top: calc(50% - 1.5rem);
  height: 3rem;
  width: 3rem;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
}
.bottom_gallery_slides .slick-arrow::before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: calc(50% - 0.9rem);
  top: calc(50% - 0.9rem);
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 50%;
  border: 1px solid #c4c4c4;
  background-color: #fff;
}
.bottom_gallery_slides .slick-arrow::after {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: calc(50% - 3.5px);
  top: calc(50% - 3.5px);
  height: 7px;
  width: 7px;
  background: url("/media/img/arrow-right.svg") no-repeat center center/contain;
}
.bottom_gallery_slides .slick-arrow.slick-prev {
  left: -1.5rem;
}
.bottom_gallery_slides .slick-arrow.slick-prev::after {
  transform: scaleX(-1);
}
.bottom_gallery_slides .slick-arrow.slick-prev:active {
  transform: translateX(-1px);
}
.bottom_gallery_slides .slick-arrow.slick-next {
  left: auto;
  right: -1.5rem;
}
.bottom_gallery_slides .slick-arrow.slick-next:active {
  transform: translateX(1px);
}
.bottom_gallery_slides .slick-arrow + .slick-list {
  border-left: 1px solid #c4c4c4;
  border-right: 1px solid #c4c4c4;
}
.bottom_gallery_slides .slick-track {
  margin-left: 0;
  margin-right: 0;
}

.store, .stores__headers, .stores__list {
  display: contents;
}
.store__label {
  display: none;
}
@media only screen and (max-width: 500px) {
  .store {
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem 1.2rem;
    border-radius: 6px;
    overflow: hidden;
    padding: 1rem 1.2rem;
  }
  .store + .store {
    margin-top: 1rem;
  }
  .store__label {
    display: inline;
    margin-right: 0.5ch;
  }
}
@media only screen and (max-width: 500px) and (max-width: 400px) {
  .store {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
}

.stores {
  display: grid;
  grid-template-columns: 1fr repeat(3, max-content) min-content;
  gap: 1rem 0;
}
@media only screen and (max-width: 500px) {
  .stores {
    display: block;
  }
}
.stores__list {
  display: contents;
}
.stores__list .store--verex .store_count--available {
  color: #3ba72d;
}
.stores__list .store--verex .store_count--almost_sold_out {
  color: #f57f00;
}
.stores__list .store--verex .store__expedition--available {
  color: #3ba72d;
  font-weight: 800;
}
.stores__list .store--verex .store__expedition--sold_out {
  color: #ed1818;
}
.stores__header {
  font-weight: 700;
  font-size: 0.76471rem;
  line-height: 1.30769em;
  padding-left: 1.2rem;
}
.stores__header:last-child {
  padding-right: 1.2rem;
}
.stores__header--specification, .stores__header--base_price, .stores__header--total_price {
  text-align: center;
}
@media only screen and (max-width: 500px) {
  .stores__headers {
    display: none;
  }
}
@media only screen and (min-width: 501px) {
  .store__others {
    display: contents;
  }
}
@media only screen and (max-width: 500px) {
  .store__others {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
    text-align: right;
  }
}
@media only screen and (max-width: 500px) and (max-width: 400px) {
  .store__others {
    align-items: flex-start;
    text-align: left;
  }
}

@media only screen and (min-width: 501px) {
  .store__title_extended, .store__dot, .store__price, .store__cart {
    background-color: #fff;
    padding-bottom: 1rem;
    padding-top: 1rem;
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
.store__title_extended {
  display: grid;
  grid-template: "title" "store";
  gap: 0.6rem 1.2rem;
  justify-content: start;
  align-items: center;
}
@media only screen and (min-width: 501px) {
  .store__title_extended {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }
}
@media only screen and (max-width: 730px) {
  .store__title_extended {
    grid-template-areas: "title store";
  }
}
.store__title_extended--tickers {
  grid-template-areas: "title tickers" "store tickers";
}
@media only screen and (max-width: 730px) {
  .store__title_extended--tickers {
    grid-template-areas: "title   store" "tickers tickers";
  }
}
.store__title {
  font-weight: 700;
  grid-area: title;
}
@media only screen and (min-width: 731px) {
  .store__title {
    align-self: end;
  }
}
.store__store {
  padding-bottom: 0.35em;
  padding-top: 0.35em;
  display: table;
  grid-area: store;
  justify-self: start;
}
@media only screen and (min-width: 731px) {
  .store__store {
    align-self: start;
  }
}
.store__ticker {
  font-weight: 700;
  font-size: 0.76471rem;
  line-height: 1.30769em;
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
}
.store__ticker::before {
  content: "";
  display: block;
  height: 15px;
  width: 15px;
  background: #ffe038 url("/media/img/ico-check.svg") no-repeat center center / 8px;
  border-radius: 50%;
  margin-top: 0.1em;
  flex-shrink: 0;
}
.store__tickers {
  grid-area: tickers;
}
.store__ticker + .store__ticker {
  margin-top: 0.5rem;
}
@media only screen and (min-width: 501px) {
  .store__dot, .store__price {
    text-align: center;
  }
}
.store__dot__value {
  font-weight: 600;
  background-color: #ffe038;
  color: #1a1a1a;
  border-radius: 6px;
  padding: 0.2em 0.7em;
  display: inline-block;
}
@media only screen and (max-width: 500px) {
  .store__dot--empty {
    display: none;
  }
}
.store__price--withoutVat {
  display: none;
}
@media only screen and (max-width: 500px) {
  .store__price__value, .store__price__vat {
    display: inline;
  }
}
@media only screen and (max-width: 500px) {
  .store__price--total {
    display: block;
  }
}
.store__expedition {
  font-weight: 700;
  font-size: 0.76471rem;
  line-height: 1.30769em;
  align-self: start;
}
@media only screen and (max-width: 500px), screen and (min-width: 731px) {
  .store__expedition {
    grid-column: span 2;
  }
}
.store__cart {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: end;
  gap: 0.6rem 1rem;
}
.store__cart__button {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  cursor: auto;
  border-width: 0;
  font-size: inherit;
  line-height: inherit;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 0.8em;
  padding-top: 0.8em;
  padding-left: 2.5em;
  padding-right: 2.5em;
  display: inline-flex;
  border-radius: 0;
  cursor: pointer;
  transition-property: background-color, border-color, color;
  transition-duration: 0.2s;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.47059em;
  background-color: #ffe038;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #1a1a1a;
  padding: 0.6em 1.3em;
  min-width: 7.5em;
  height: 2.6rem;
  width: 2.6rem;
  display: inline-flex !important;
  min-width: 0;
  padding: 0;
}
.store__cart__button:hover {
  background-color: #e29400;
}
.store__cart__button:active {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
.store__cart__button > span {
  display: block;
  position: relative;
  padding-right: 1.3em;
  margin-right: -0.3em;
}
.store__cart__button > span::before, .store__cart__button > span::after {
  content: "";
  display: block;
  position: absolute;
  height: 21px;
  width: 21px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: no-repeat center center / contain;
  transition: opacity 0.2s;
}
.store__cart__button > span::before {
  background-image: url("/media/img/ico-cart.svg");
  opacity: 1;
}
.store__cart__button > span::after {
  background-image: url("/media/img/ico-cart-primary.svg");
  opacity: 0;
}
.store__cart__button .waiter-inspire .waiter-inspire-text {
  display: none;
}
.store__cart__button .waiter-inspire .waiter-inspire-img-helper {
  margin-left: auto;
  margin-right: auto;
  max-width: 2em;
}
.store__cart__button > span {
  margin-right: 0.1em;
}
.store__cart__button > span span {
  display: none;
}
.store__cart__button:active > span::before {
  opacity: 0;
}
.store__cart__button:active > span::after {
  opacity: 1;
}
@media only screen and (min-width: 501px) {
  .store__cart {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    padding-right: 1.2rem;
  }
}
@media only screen and (min-width: 501px) and (max-width: 730px) {
  .store__cart {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .store__cart .count_changer {
    display: grid;
    justify-content: start;
  }
  .store__cart .count_changer__input {
    grid-row: span 2;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    height: 2.2rem;
    width: 100%;
    min-width: 2rem;
  }
  .store__cart .count_changer__button {
    grid-column-start: 2;
    width: 1.3rem;
  }
  .store__cart .count_changer__button--minus {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 6px;
    border-left-width: 0;
    border-right-width: 1px;
    border-top-width: 0;
    grid-row-start: 2;
  }
  .store__cart .count_changer__button--minus::after {
    background-image: url("/media/img/ico-minus.svg");
  }
  .store__cart .count_changer__button--plus {
    border-bottom-right-radius: 0;
    border-left-width: 0;
    grid-row-start: 1;
  }
  .store__cart__button {
    height: 2.2rem;
    width: 100%;
  }
}

.param {
  display: contents;
}
.params:not(.param--split), .params--split .params__col {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.9rem;
}
.param__value {
  font-weight: 600;
}
.params--split {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: start;
  gap: 3rem;
}

.energy_label {
  font-size: 1.05882rem;
  line-height: 1.38889em;
  background-color: #fff;
  border: 2px solid #1a1a1a;
  padding: 1.5em;
  min-width: 22em;
  max-width: 32em;
  display: grid;
  grid-template: "headline    headline    headline headline" "name        name        type     type" "size        size        class    class" "consumption consumption breaking breaking" "info        info        info     info" / 1fr 1fr 1fr 1fr;
}
.energy_label__headline {
  grid-area: headline;
}
.energy_label__name {
  grid-area: name;
}
.energy_label__type {
  grid-area: type;
}
.energy_label__size {
  grid-area: size;
}
.energy_label__class {
  grid-area: class;
}
.energy_label__consumption {
  grid-area: consumption;
}
.energy_label__breaking {
  grid-area: breaking;
}
.energy_label__info {
  grid-area: info;
}
@media only screen and (max-width: 405px) {
  .energy_label {
    font-size: 2.8vw;
    min-width: initial;
    max-width: initial;
  }
}
.energy_label__headline {
  padding-bottom: 0.5em;
}
.energy_label__headline svg {
  max-width: 20em;
}
.energy_label__name, .energy_label__type, .energy_label__size, .energy_label__class {
  border-bottom: 2px solid #1a1a1a;
  padding-top: 0.6em;
  padding-bottom: 0.4em;
}
.energy_label__name, .energy_label__size {
  padding-right: 0.5em;
}
.energy_label__type, .energy_label__class {
  padding-left: 0.5em;
  text-align: right;
}
.energy_label__name {
  font-weight: 700;
  text-transform: uppercase;
}
.energy_label__scale {
  position: relative;
}
.energy_label__scale__item {
  position: relative;
  overflow: hidden;
  height: 2.5em;
  display: flex;
  align-items: center;
  padding-left: 0.5em;
}
.energy_label__scale__item::before {
  content: "";
  display: block;
  position: absolute;
  height: 2.5em;
  width: 2.5em;
  right: 0.5em;
  top: 0;
  transform: rotate(0.125turn);
  border: 1px solid transparent;
  border-left-width: 0;
  border-bottom-width: 0;
}
.energy_label__scale__item::after {
  content: "";
  display: block;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  right: 1.25em;
  border: 1px solid transparent;
  border-right-width: 0;
}
.energy_label__scale__item::before, .energy_label__scale__item::after {
  border-color: #1a1a1a;
}
.energy_label__scale__item > span {
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1em;
  position: relative;
  z-index: 1;
  margin-top: -0.1em;
  color: #fff;
  text-shadow: 0 0 2px #1a1a1a;
}
.energy_label__scale__item + .energy_label__scale__item {
  margin-top: 0.5em;
}
.energy_label__scale__value {
  font-weight: 700;
  font-size: 2.2em;
  line-height: 1em;
  padding-left: 0.1em;
  padding-right: 0.3em;
  background-color: #1a1a1a;
  color: #fff;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 0;
  margin-top: -0.2em;
  transition: transform 1.5s;
  transition-timing-function: cubic-bezier(0.59, 1.17, 0.42, 1.21);
  transform: translateY(7em);
}
html.js .energy_label__scale__value {
  transform: translateY(0);
}
.energy_label__scale__value > span {
  margin-top: -0.1em;
}
.energy_label__scale__value::before {
  content: "";
  display: block;
  position: absolute;
  border-right: 0.75em solid #1a1a1a;
  border-top: 0.75em solid transparent;
  border-bottom: 0.75em solid transparent;
  right: 100%;
}
.energy_label__scale__value--a {
  top: 0;
}
.energy_label__scale__value--b {
  top: 1.35em;
}
.energy_label__scale__value--c {
  top: 2.70em;
}
.energy_label__scale__value--d {
  top: 4.05em;
}
.energy_label__scale__value--e {
  top: 5.40em;
}
.energy_label__consumption, .energy_label__breaking {
  margin-bottom: 1em;
  margin-top: 1em;
  overflow: hidden;
}
.energy_label__consumption__icon, .energy_label__breaking__icon {
  margin-bottom: 1em;
}
.energy_label__consumption__icon svg, .energy_label__breaking__icon svg {
  margin-left: auto;
  margin-right: auto;
  height: 5em;
}
.energy_label__consumption {
  border-right: 2px solid #1a1a1a;
  padding-right: 1em;
}
.energy_label__breaking {
  padding-left: 1em;
}
.energy_label__consumption .energy_label__scale__item--a {
  width: 37%;
}
.energy_label__consumption .energy_label__scale__item--a::before, .energy_label__consumption .energy_label__scale__item--a::after {
  background-color: #00a651;
}
.energy_label__consumption .energy_label__scale__item--b {
  width: 44%;
}
.energy_label__consumption .energy_label__scale__item--b::before, .energy_label__consumption .energy_label__scale__item--b::after {
  background-color: #9aca3c;
}
.energy_label__consumption .energy_label__scale__item--c {
  width: 51%;
}
.energy_label__consumption .energy_label__scale__item--c::before, .energy_label__consumption .energy_label__scale__item--c::after {
  background-color: #fff200;
}
.energy_label__consumption .energy_label__scale__item--d {
  width: 58%;
}
.energy_label__consumption .energy_label__scale__item--d::before, .energy_label__consumption .energy_label__scale__item--d::after {
  background-color: #fdb913;
}
.energy_label__consumption .energy_label__scale__item--e {
  width: 65%;
}
.energy_label__consumption .energy_label__scale__item--e::before, .energy_label__consumption .energy_label__scale__item--e::after {
  background-color: #ed1c24;
}
.energy_label__breaking .energy_label__scale__item--a {
  width: 37%;
}
.energy_label__breaking .energy_label__scale__item--a::before, .energy_label__breaking .energy_label__scale__item--a::after {
  background-color: #0066b3;
}
.energy_label__breaking .energy_label__scale__item--b {
  width: 44%;
}
.energy_label__breaking .energy_label__scale__item--b::before, .energy_label__breaking .energy_label__scale__item--b::after {
  background-color: #0080c6;
}
.energy_label__breaking .energy_label__scale__item--c {
  width: 51%;
}
.energy_label__breaking .energy_label__scale__item--c::before, .energy_label__breaking .energy_label__scale__item--c::after {
  background-color: #4ba6dd;
}
.energy_label__breaking .energy_label__scale__item--d {
  width: 58%;
}
.energy_label__breaking .energy_label__scale__item--d::before, .energy_label__breaking .energy_label__scale__item--d::after {
  background-color: #75bee9;
}
.energy_label__breaking .energy_label__scale__item--e {
  width: 65%;
}
.energy_label__breaking .energy_label__scale__item--e::before, .energy_label__breaking .energy_label__scale__item--e::after {
  background-color: #abe1fa;
}
.energy_label__breaking .energy_label__scale__value {
  transition-delay: 1.5s;
}
.energy_label__info {
  border-top: 2px solid #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 1em;
  padding-top: 1em;
}
.energy_label__noise {
  position: relative;
  flex-shrink: 0;
}
.energy_label__noise__icon svg {
  height: 6em;
}
.energy_label__noise__noise {
  position: absolute;
  top: 1.65em;
  left: 1.9em;
  width: 3.6em;
  text-align: center;
}
.energy_label__noise__noise strong {
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1em;
}
.energy_label__noise__class {
  display: flex;
  align-items: baseline;
  gap: 0.2ch;
  position: absolute;
  bottom: 0;
  left: 3.2em;
  line-height: 1em;
}
.energy_label__noise__class--a .energy_label__noise__class__item--a, .energy_label__noise__class--b .energy_label__noise__class__item--b, .energy_label__noise__class--c .energy_label__noise__class__item--c {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1em;
}
.energy_label__alpine svg {
  height: 5em;
}

.product_detail {
  padding-bottom: 3.5rem;
}
@media only screen and (max-width: 600px) {
  .product_detail {
    padding-bottom: 2rem;
  }
}
.product_detail__header {
  padding-top: 1.2rem;
  padding-bottom: 1.8rem;
}
.breadcrumbs + .product_detail__title {
  margin-top: 1rem;
}
.product_detail__title {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.6em;
  font-size: 1.88235rem;
  line-height: 1.40625em;
  margin-bottom: 0;
}
@media only screen and (max-width: 450px) {
  .product_detail__title {
    font-size: 1.64706rem;
    line-height: 1.25em;
  }
}
.product_detail__headline {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.6em;
  font-size: 1.41176rem;
  line-height: 1.5em;
}
.product_detail__gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product_detail__gallery .stickers {
  position: absolute;
  left: 0;
  top: 0;
}
.product_detail__gallery__top {
  flex-grow: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.product_detail__gallery__bottom {
  flex-shrink: 0;
}
.product_detail__icons {
  flex-direction: column;
  position: absolute;
  right: 0;
  bottom: 0;
}
.product_detail__top {
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
}
@media only screen and (min-width: 1001px) {
  .product_detail__top {
    display: flex;
    gap: 0;
  }
}
@media only screen and (min-width: 1001px) and (min-width: 671px) {
  .product_detail__top__left__inner {
    padding-left: 3rem;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 670px) {
  .product_detail__top__left__inner {
    padding-left: 1.5rem;
  }
}
@media only screen and (min-width: 1001px) and (min-width: 1261px) {
  .product_detail__top__left {
    width: calc(415.8px + ((100% - 1260px) / 2));
  }
  .product_detail__top__left__inner {
    margin-left: auto;
    width: 415.8px;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1260px) {
  .product_detail__top__left {
    width: 33%;
  }
}
@media only screen and (min-width: 1001px) and (min-width: 671px) {
  .product_detail__top__right__inner {
    padding-right: 3rem;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 670px) {
  .product_detail__top__right__inner {
    padding-right: 1.5rem;
  }
}
@media only screen and (min-width: 1001px) and (min-width: 1261px) {
  .product_detail__top__right {
    width: calc(844.2px + ((100% - 1260px) / 2));
  }
  .product_detail__top__right__inner {
    width: 844.2px;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1260px) {
  .product_detail__top__right {
    width: 67%;
  }
}

.product_detail__top__left {
  padding-bottom: 1.2rem;
  padding-top: 1.2rem;
}
.product_detail__top__left__inner {
  height: 100%;
  padding-right: 1.5rem;
}
@media only screen and (max-width: 1000px) and (min-width: 671px) {
  .product_detail__top__left__inner {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 670px) {
  .product_detail__top__left__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.product_detail__top__right {
  background-color: #f0f0f0;
}
.product_detail__top__right__inner {
  height: 100%;
}
.product_detail__unavailable {
  padding-bottom: 3rem;
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}
@media only screen and (min-width: 671px) {
  .product_detail__unavailable {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media only screen and (max-width: 670px) {
  .product_detail__unavailable {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.product_detail__unavailable__text {
  font-size: 1.05882rem;
  line-height: 1.55556em;
  font-style: italic;
}
.product_detail__unavailable__button {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  cursor: auto;
  border-width: 0;
  font-size: inherit;
  line-height: inherit;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 0.8em;
  padding-top: 0.8em;
  padding-left: 2.5em;
  padding-right: 2.5em;
  display: inline-flex;
  border-radius: 0;
  cursor: pointer;
  transition-property: background-color, border-color, color;
  transition-duration: 0.2s;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.47059em;
  background-color: #ffe038;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #1a1a1a;
  padding: 0.6em 1.3em;
  min-width: 7.5em;
  background-color: #1a1a1a;
  color: #ffe038;
  margin-top: 2rem;
}
.product_detail__unavailable__button:hover {
  background-color: #e29400;
}
.product_detail__unavailable__button:active {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
.product_detail__unavailable__button > span::before {
  background-image: url("/media/img/arrow-right-primary.svg");
}
.product_detail__unavailable__button:hover {
  background-color: #1a1a1a;
  color: #e29400;
}
.product_detail__unavailable__button:hover > span::before {
  background-image: url("/media/img/arrow-right-accent.svg");
}
.product_detail__unavailable__button:active {
  color: #fff;
}
.product_detail__unavailable__button > span {
  display: block;
  position: relative;
  padding-right: 1.3em;
  margin-right: -0.3em;
}
.product_detail__unavailable__button > span::before, .product_detail__unavailable__button > span::after {
  content: "";
  display: block;
  position: absolute;
  height: 7px;
  width: 7px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: no-repeat center center / contain;
  transition: opacity 0.2s;
}
.product_detail__unavailable__button > span::before {
  background-image: url("/media/img/arrow-right-primary.svg");
  opacity: 1;
}
.product_detail__unavailable__button > span::after {
  background-image: url("/media/img/arrow-right-accent.svg");
  opacity: 0;
}
.product_detail__tire_store_list, .product_detail__rendering_options {
  padding: 1.4rem 0 1.4rem 1.5rem;
}
@media only screen and (max-width: 1000px) and (min-width: 671px) {
  .product_detail__tire_store_list, .product_detail__rendering_options {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 670px) {
  .product_detail__tire_store_list, .product_detail__rendering_options {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.product_detail__rendering_options {
  border-top: 1px solid #c4c4c4;
}
.product_detail__bottom {
  padding-top: 3.5rem;
}
@media only screen and (max-width: 600px) {
  .product_detail__bottom {
    padding-top: 2rem;
  }
}
.product_detail__bottom__inner {
  display: grid;
  grid-template: 'params energy' / 1.1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 3rem;
  align-items: baseline;
}
@media only screen and (max-width: 1000px) {
  .product_detail__bottom__inner {
    grid-template-columns: 1fr;
    grid-template-areas: 'params' 'energy';
  }
}
.product_detail__bottom__inner--with_text {
  grid-template-areas: 'params energy' 'text   energy';
}
@media only screen and (max-width: 1000px) {
  .product_detail__bottom__inner--with_text {
    grid-template-areas: 'params' 'text' 'energy';
  }
}
.product_detail__parameters {
  grid-area: params;
}
@media only screen and (max-width: 450px) {
  .product_detail__parameters .params__col {
    display: contents;
  }
}
.product_detail__text, .product_detail__energy_label {
  border-top: 1px solid #c4c4c4;
  padding-top: 1.5rem;
}
.product_detail__text {
  grid-area: text;
}
.product_detail__energy_label {
  grid-area: energy;
}
.product_detail__energy_label .params {
  max-width: 20rem;
}
@media only screen and (min-width: 1001px) {
  .product_detail__energy_label {
    padding-top: 0;
    border-top-width: 0;
  }
}
.product_detail .energy_label {
  margin-top: 1.5rem;
}
.product_detail.cookie_no_price .fake_checkbox[data-toggle-class='cookie_no_price'] .fake_checkbox__graphic::before {
  opacity: 0 !important;
}
.product_detail.cookie_no_price .fake_checkbox[data-toggle-class='cookie_no_price'] .fake_checkbox__graphic::after {
  opacity: 1 !important;
}
.product_detail.cookie_no_price .stores__header--base_price,
.product_detail.cookie_no_price .stores__header--total_price,
.product_detail.cookie_no_price .store__price > * {
  visibility: hidden;
}
.product_detail.cookie_pricewv .fake_checkbox[data-toggle-class='cookie_pricewv'] .fake_checkbox__graphic::before {
  opacity: 0 !important;
}
.product_detail.cookie_pricewv .fake_checkbox[data-toggle-class='cookie_pricewv'] .fake_checkbox__graphic::after {
  opacity: 1 !important;
}
.product_detail.cookie_pricewv .store__price--withVat {
  display: none;
}
.product_detail.cookie_pricewv .store__price--withoutVat {
  display: inline;
}
