@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);
  }
}
.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_list__filter__col--right {
  grid-area: col--right;
}
.tire_list__filter__col--left {
  grid-area: col--left;
}
.tire_list__filter__specification--1st {
  grid-area: specification--1st;
}
.tire_list__filter__specification--2nd {
  grid-area: specification--2nd;
}
.tire_list__filter__season {
  grid-area: season;
}
.tire_list__filter__attributes {
  grid-area: attributes;
}
.tire_list__filter__buttons {
  grid-area: buttons;
}
.tire_list__filter__tabs {
  font-weight: 800;
  font-size: 1.05882rem;
  line-height: 1.55556em;
  text-transform: uppercase;
  text-align: center;
  background-color: #1a1a1a;
  color: #fff;
}
.tire_list__filter__tabs ul {
  display: flex;
  align-items: center;
}
.tire_list__filter__tabs li {
  flex: 1 0 0;
}
.tire_list__filter__tabs a {
  transition: color 0.2s;
  display: block;
  padding: 1.2em;
}
.tire_list__filter__tabs a:hover {
  color: #ffe038;
}
@media only screen and (max-width: 1000px) {
  .tire_list__filter__tabs {
    font-size: 1.8vw;
  }
  .tire_list__filter__tabs a {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media only screen and (max-width: 670px) {
  .tire_list__filter__tabs {
    font-size: 2.3vw;
  }
}
.tire_list__filter__tab--active {
  color: #ffe038;
}
.tire_list__filter__headline {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.6em;
  font-size: 1rem;
  line-height: 1.41176em;
}
@media only screen and (min-width: 531px) {
  .tire_list__filter__col {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  .tire_list__filter__col--left {
    border-right: 1px solid #c4c4c4;
    padding-right: 3rem;
  }
}
@media only screen and (min-width: 531px) and (max-width: 670px) {
  .tire_list__filter__col--left {
    padding-right: 1.5rem;
  }
}
@media only screen and (min-width: 531px) {
  .tire_list__filter__col--right {
    padding-left: 3rem;
    display: grid;
    grid-template: "season attributes" / min-content auto;
    gap: 1.5rem 3rem;
    align-content: start;
  }
}
@media only screen and (min-width: 531px) and (max-width: 800px) {
  .tire_list__filter__col--right {
    grid-template: "season" "attributes" / 1fr;
  }
}
@media only screen and (min-width: 531px) and (max-width: 670px) {
  .tire_list__filter__col--right {
    padding-left: 1.5rem;
  }
}

@media only screen and (max-width: 530px) {
  .tire_list__filter__col {
    display: contents;
  }
}
.tire_list__filter__input_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media only screen and (min-width: 1261px) {
  .tire_list__filter__input_list .checkbox {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 1260px) {
  .tire_list__filter__input_list {
    grid-template-columns: 1fr;
  }
}
.tire_list__filter__content .form__items {
  display: grid;
}
@media only screen and (min-width: 531px) {
  .tire_list__filter__content .form__items {
    grid-template: "col--left col--right" / 1fr 1fr;
  }
}
@media only screen and (max-width: 530px) {
  .tire_list__filter__content .form__items {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
    grid-template-areas: "season" "specification--1st" "specification--2nd" "attributes" "other" "buttons";
    gap: 2.5rem;
  }
}
.tire_list__filter__content .form_item {
  margin-bottom: 0;
}
.tire_list__filter__content .form_item.has_error .field::after {
  display: none;
}
.tire_list__filter__content .form_item[class*='width'] label {
  display: flex;
  align-items: center;
}
.tire_list__filter__content .form_item[class*='width'] label::before {
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  margin-right: 0.8ch;
  background: no-repeat center center / contain;
  background-image: url("/media/img/filter/ico-width.svg");
}
.tire_list__filter__content .form_item[class*='height'] label {
  display: flex;
  align-items: center;
}
.tire_list__filter__content .form_item[class*='height'] label::before {
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  margin-right: 0.8ch;
  background: no-repeat center center / contain;
  background-image: url("/media/img/filter/ico-height.svg");
}
.tire_list__filter__content .form_item[class*='diameter'] label {
  display: flex;
  align-items: center;
}
.tire_list__filter__content .form_item[class*='diameter'] label::before {
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  margin-right: 0.8ch;
  background: no-repeat center center / contain;
  background-image: url("/media/img/filter/ico-diameter.svg");
}
.tire_list__filter__specification .tooltip {
  margin-top: 0.2rem;
}
.tire_list__filter__season .multichoice_items {
  display: flex;
  gap: 1em;
  flex-direction: column;
}
.tire_list__filter__season .multichoice_items svg {
  height: 2em;
  width: 2em;
  fill: #ffe038;
}
.tire_list__filter__season .multichoice_items label {
  transition: border-color 0.2s;
  background-color: #1a1a1a;
  border: 5px solid #fff;
  border-radius: 6px;
  padding: 0.5em;
  cursor: pointer;
}
.tire_list__filter__season .multichoice_items label:hover,
.tire_list__filter__season .multichoice_items input:checked + label {
  border-color: #ffe038;
}
.tire_list__filter__season .multichoice_items .season_item_1 label:hover,
.tire_list__filter__season .multichoice_items .season_item_1 input:checked + label {
  border-right-color: #38d1ff;
  border-bottom-color: #38d1ff;
}
.tire_list__filter__season .multichoice_items .season_item_3 label:hover,
.tire_list__filter__season .multichoice_items .season_item_3 input:checked + label {
  border-color: #38d1ff;
}
@media only screen and (min-width: 531px) {
  .tire_list__filter__season .multichoice_title {
    visibility: hidden;
    overflow: hidden;
    white-space: nowrap;
    width: 1px;
  }
}
@media only screen and (max-width: 800px) {
  .tire_list__filter__season .multichoice_items {
    flex-direction: row;
  }
}
.tire_list__filter__buttons {
  display: grid;
  grid-template: "reset send" / 1fr 2fr;
  gap: 1.5rem;
}
.tire_list__filter__buttons .send {
  grid-area: send;
}
.tire_list__filter__buttons .reset {
  grid-area: reset;
}
@media only screen and (min-width: 531px) {
  .tire_list__filter__buttons {
    margin-top: 2.5rem;
  }
}
.tire_list__filter__buttons .button button {
  width: 100%;
}
.tire_list__filter__buttons .button button > span {
  margin-right: 0;
  padding-right: 0;
}
.tire_list__filter__buttons .button button > span::before, .tire_list__filter__buttons .button button > span::after {
  display: none;
}
.tire_list__filter__buttons .reset button {
  background-color: transparent;
  border-color: #c4c4c4;
}
.tire_list__filter__buttons .reset button:hover {
  background-color: transparent;
  border-color: #1a1a1a;
}
.tire_list__filter__buttons .reset button:active {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
.tire_list__filter__quick_spec {
  padding-bottom: 2rem;
  padding-top: 2rem;
  border-bottom: 1px solid #c4c4c4;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  position: relative;
}
.tire_list__filter__quick_spec .label {
  display: none;
}
.tire_list__filter__quick_spec .error_messages {
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: 0.4rem;
}
.tire_list__filter__quick_spec .input input {
  font-size: 0.94118rem;
  line-height: 1.0625em;
  border: 2px solid #1a1a1a;
  padding: 0.7em 1.1em;
}
.tire_list__filter__quick_spec .input input::placeholder {
  color: #1a1a1a;
  opacity: 1;
}
@media only screen and (min-width: 701px) {
  .tire_list__filter__quick_spec .input input {
    min-width: 20rem;
  }
}

.header__bottom {
  display: none;
}

.content .tire_list__rendering_options {
  grid-area: rendering_options;
}
.content .tire_list__order {
  grid-area: order;
}
.content .tire_list__checkbox_filter {
  grid-area: checkbox_filter;
}
.content .tire_list__paginator_top {
  grid-area: paginator_top;
}
.content .tire_list__products {
  background-color: #f0f0f0;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
  flex-grow: 1;
}
.content .tire_list__products.cookie_no_price .fake_checkbox[data-toggle-class='cookie_no_price'] .fake_checkbox__graphic::before {
  opacity: 0 !important;
}
.content .tire_list__products.cookie_no_price .fake_checkbox[data-toggle-class='cookie_no_price'] .fake_checkbox__graphic::after {
  opacity: 1 !important;
}
.content .tire_list__products.cookie_no_price .tire_line__price > * {
  visibility: hidden;
}
.content .tire_list__products.cookie_pricewv .fake_checkbox[data-toggle-class='cookie_pricewv'] .fake_checkbox__graphic::before {
  opacity: 0 !important;
}
.content .tire_list__products.cookie_pricewv .fake_checkbox[data-toggle-class='cookie_pricewv'] .fake_checkbox__graphic::after {
  opacity: 1 !important;
}
.content .tire_list__products.cookie_pricewv .tire_line__price--withVat {
  display: none;
}
.content .tire_list__products.cookie_pricewv .tire_line__price--withoutVat {
  display: block;
}
.content .tire_list__products.cookie_ean .fake_checkbox[data-toggle-class='cookie_ean'] .fake_checkbox__graphic::before {
  opacity: 0 !important;
}
.content .tire_list__products.cookie_ean .fake_checkbox[data-toggle-class='cookie_ean'] .fake_checkbox__graphic::after {
  opacity: 1 !important;
}
.content .tire_list__products.cookie_ean .tire_line__ean > * {
  visibility: hidden;
}
.content .tire_list__checkbox_filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.content .tire_list__checkbox_filter .fake_checkbox__graphic {
  margin-top: 0.9rem;
  left: 1.4rem;
}
.content .tire_list__checkbox_filter .fake_checkbox__graphic::before, .content .tire_list__checkbox_filter .fake_checkbox__graphic::after {
  pointer-events: none;
  z-index: 1;
}
.content .tire_list__checkbox_filter .fake_checkbox__graphic::after {
  background-color: #ffe038;
  background-image: url("/media/img/ico-check.svg");
}
.content .tire_list__checkbox_filter .fake_checkbox__label {
  padding-bottom: 0.9rem;
  padding-top: 0.9rem;
  background-color: #fff;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  padding: 0.9rem 1.4rem 0.9rem calc(15px + 2.1rem);
}
.content .tire_list__checkbox_filter .fake_checkbox.checked .fake_checkbox__label {
  background-color: #1a1a1a;
  color: #fff;
}
.content .tire_list__order li:not(:first-child) {
  display: none;
}
.content .tire_list__settings {
  display: grid;
  grid-template: "rendering_options order" "checkbox_filter   paginator_top";
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}
@media only screen and (max-width: 600px) {
  .content .tire_list__settings {
    grid-template-areas: "rendering_options rendering_options" "order             paginator_top" "checkbox_filter   checkbox_filter";
  }
  .content .tire_list__settings,
  .content .tire_list__settings .paginator {
    justify-content: start;
  }
}
@media only screen and (max-width: 450px) {
  .content .tire_list__settings {
    grid-template-areas: "rendering_options" "order" "paginator_top" "checkbox_filter";
  }
}
.content .tire_list__paginator_top .paginator {
  padding-bottom: 0.6rem;
  padding-top: 0.6rem;
  grid-area: paginator_top;
}
@media only screen and (min-width: 901px) {
  .content .tire_line {
    display: contents;
  }
}
@media only screen and (max-width: 900px) {
  .content .tire_line {
    display: grid;
    grid-template: "photo specification specification price" "photo title         title         price" "photo ean           ean           price" "icons store_count   stores        detail_link" / min-content max-content auto max-content;
    gap: 1rem 1.5rem;
    background-color: #fff;
    border-radius: 6px;
    padding: 1rem;
  }
  .content .tire_line__specification {
    grid-area: specification;
  }
  .content .tire_line__title {
    grid-area: title;
  }
  .content .tire_line__photo {
    grid-area: photo;
  }
  .content .tire_line__icons {
    grid-area: icons;
  }
  .content .tire_line__ean {
    grid-area: ean;
  }
  .content .tire_line__stores {
    grid-area: stores;
  }
  .content .tire_line__price {
    grid-area: price;
  }
  .content .tire_line__store_count {
    grid-area: store_count;
  }
  .content .tire_line__detail_link {
    grid-area: detail_link;
  }
}
@media only screen and (max-width: 420px) {
  .content .tire_line {
    grid-template: "photo       specification specification" "photo       title         title" "photo       ean           ean" "icons       store_count   stores" "detail_link price         price" / min-content max-content auto;
  }
}
@media only screen and (min-width: 901px) {
  .content .tire_line__list {
    display: grid;
    grid-template-columns: max-content minmax(min-content, 1.6fr) max-content max-content repeat(2, minmax(min-content, 1fr)) repeat(3, max-content);
    gap: 1rem 0;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1200px) {
  .content .tire_line__list {
    grid-template-columns: max-content minmax(min-content, 1.6fr) max-content max-content repeat(2, minmax(min-content, 1fr)) repeat(2, max-content);
  }
}
@media only screen and (max-width: 900px) {
  .content .tire_line__list {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-gap: 1rem;
  }
}
.content .tire_line__list--no_data {
  display: block;
}
@media only screen and (min-width: 901px) {
  .content .tire_line__specification, .content .tire_line__title, .content .tire_line__photo, .content .tire_line__icons, .content .tire_line__ean, .content .tire_line__stores, .content .tire_line__price, .content .tire_line__store_count, .content .tire_line__detail_link {
    background-color: #fff;
    padding-bottom: 1rem;
    padding-top: 1rem;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
.content .tire_line__specification, .content .tire_line__title, .content .tire_line__ean, .content .tire_line__stores, .content .tire_line__store_count {
  font-size: 0.76471rem;
  line-height: 1.30769em;
}
@media only screen and (min-width: 901px) {
  .content .tire_line__specification {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    padding-left: 1.5rem;
  }
}
.content .tire_line__title {
  font-weight: 700;
}
@media only screen and (max-width: 900px) {
  .content .tire_line__title {
    margin-top: -1rem;
  }
}
@media only screen and (max-width: 900px) {
  .content .tire_line__photo {
    justify-self: center;
  }
}
.content .tire_line__icon {
  font-size: 0.58824rem;
}
@media only screen and (min-width: 901px) {
  .content .tire_line__icons {
    flex-direction: row;
    align-items: center;
  }
}
.content .tire_line__ean > span {
  cursor: help;
}
@media only screen and (min-width: 901px) {
  .content .tire_line__ean {
    align-items: center;
  }
}
@media only screen and (max-width: 900px) {
  .content .tire_line__ean {
    margin-top: -1rem;
  }
}
.content .tire_line__store {
  font-weight: 700;
  height: 2em;
  width: 2em;
  border: 1px solid #c4c4c4;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.content .tire_line__stores {
  cursor: help;
  display: flex;
  gap: 0.5em;
}
@media only screen and (min-width: 901px) {
  .content .tire_line__stores {
    flex-direction: row;
    align-items: center;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1200px) {
  .content .tire_line__stores {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 901px) {
  .content .tire_line__price {
    flex-direction: row;
    align-items: center;
  }
}
@media only screen and (max-width: 900px) {
  .content .tire_line__price__wrap {
    text-align: right;
  }
}
@media only screen and (max-width: 420px) {
  .content .tire_line__price__value, .content .tire_line__price__vat {
    display: inline;
  }
  .content .tire_line__price__wrap {
    text-align: left;
  }
}
.content .tire_line__price--withoutVat {
  display: none;
}
@media only screen and (min-width: 901px) and (max-width: 1200px) {
  .content .tire_line__store_count {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    padding-right: 1.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .content .tire_line__store_count {
    align-self: center;
  }
}
.content .tire_line__detail_link {
  font-weight: 600;
}
@media only screen and (min-width: 901px) {
  .content .tire_line__detail_link {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    padding-right: 1.5rem;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1200px) {
  .content .tire_line__detail_link {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  .content .tire_line__detail_link {
    align-self: end;
    justify-self: end;
  }
}
.content .tire_line__detail_link__inner {
  color: #e29400;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 0.7ch;
}
.content .tire_line__detail_link__inner:hover {
  text-decoration: none;
}
.content .tire_line__detail_link__inner::after {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  background: url("/media/img/arrow-right-accent.svg") no-repeat center center/contain;
  flex-shrink: 0;
}
.content .tire_line__detail_link:hover .content .tire_line__detail_link__inner {
  text-decoration: none;
}
html:not(.js) .content {
  background-color: #fff;
  position: relative;
}
html:not(.js) .content::before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: calc(50% - 3rem);
  top: calc(50% - 3rem);
  height: 6rem;
  width: 6rem;
  -webkit-animation: rotateWaiter linear 0.6s;
  -moz-animation: rotateWaiter linear 0.6s;
  -o-animation: rotateWaiter linear 0.6s;
  -ms-animation: rotateWaiter linear 0.6s;
  animation: rotateWaiter linear 0.6s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  aspect-ratio: 1 / 1;
  background: transparent url("/media/css-stack/img/waiter.svg") no-repeat center center/contain;
  opacity: 0.3;
}

.main_content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
html:not(.js) .main_content {
  visibility: hidden;
}

.infinite_scroll {
  display: contents;
}

.no_data {
  margin-top: 3rem;
}
