@charset "UTF-8";
:root {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    margin: 0;
    font: 14px/20px "Roboto", sans-serif;
    color: #000;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    outline: 0;
    transition: all 0.15s;
}

img {
    max-width: 100%;
}

img,
svg {
    vertical-align: middle;
}

button,
input,
textarea {
    padding: 0;
    font: inherit;
    color: inherit;
    background: 0;
    border: 0;
    outline: 0;
}

button {
    text-align: left;
    transition: all 0.15s;
    -webkit-appearance: button;
}
button:not(:disabled) {
    cursor: pointer;
}

input::-webkit-search-decoration, input::-webkit-search-cancel-button, input::-webkit-search-results-button, input::-webkit-search-results-decoration, input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    display: none;
}

textarea {
    resize: vertical;
}

.sprite {
    display: none;
}

.icon-16 {
    width: 16px;
    height: 16px;
}

.icon-20 {
    width: 20px;
    height: 20px;
}

.icon-24 {
    width: 24px;
    height: 24px;
}

.link {
    color: #e12429;
}
.link:hover, .link:focus-visible {
    text-decoration: underline;
}

.link-underline {
    color: #e12429;
    text-decoration: underline;
}
.link-underline:hover, .link-underline:focus-visible {
    text-decoration: none;
}

.btn {
    display: inline-block;
    padding: 9px 20px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background-color: #e12429;
    border: 1px solid #e12429;
    border-radius: 2px;
}
.btn:hover, .btn:focus-visible {
    background-color: #f21318;
    border-color: #f21318;
}
.btn:active {
    background-color: #d41d22;
    border-color: #d41d22;
}
.btn:disabled {
    color: #a1a1a1;
    background-color: #d8d7d7;
    border-color: #d8d7d7;
    pointer-events: none;
}
.btn--outline {
    color: #e12429;
    background: 0;
}
.btn--outline:hover, .btn--outline:focus-visible {
    color: #fff;
    background-color: #e12429;
}
.btn--outline:active {
    color: #fff;
    background-color: #d41d22;
    border-color: #d41d22;
}
.btn--outline:disabled {
    background-color: #fff;
}
.btn--block {
    display: block;
    width: 100%;
}
.btn--loading {
    position: relative;
    color: transparent;
}
.btn--loading:disabled {
    color: transparent;
}
.btn--loading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid;
    border-color: #fff rgba(255, 255, 255, 0.4) rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    animation: rotate 0.4s linear infinite;
}
.btn--outline::before {
    border-color: #e12429 rgba(225, 36, 41, 0.2) rgba(225, 36, 41, 0.2);
}
@keyframes rotate {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

.form-label {
    display: block;
    margin-bottom: 8px;
}

.text-field {
    width: 100%;
    height: 40px;
    padding: 0 16px;
    background-color: #fff;
    border: 1px solid #d8d7d7;
}
.text-field:focus {
    background-color: #fff;
    border-color: #e12429;
}
.text-field::placeholder {
    color: #d8d7d7;
}
.text-field--fill {
    background-color: #f7f7f7;
    border-color: #f7f7f7;
}
.text-field--fill::placeholder {
    color: #a1a1a1;
}

.checkbox {
    display: block;
    cursor: pointer;
}
.checkbox__input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.checkbox__label {
    display: flex;
    align-items: center;
}
.checkbox__label::before {
    content: "";
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #d8d7d7;
    border-radius: 2px;
}
.checkbox__input:focus-visible + .checkbox__label::before {
    border-color: #e12429;
}
.checkbox__input:checked + .checkbox__label::before {
    background: #4ca75c url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.66797 12.4072L11.2861 4.04688H12.7217L9.49512 14.0068H8.42188L8.66797 12.4072ZM7.69043 8.73633L8.91406 12.4482L9.13281 14.0068H8.13477L6.19336 8.73633H7.69043ZM5.27734 10.0625V8.73633H7.59473V10.0625H5.27734Z' fill='white'/%3E%3C/svg%3E%0A");
    border: 0;
}
.checkbox__input:disabled + .checkbox__label {
    color: #a1a1a1;
}
.checkbox__input:disabled + .checkbox__label::before {
    border-color: #e8e8e8;
}
.checkbox__input:disabled:checked + .checkbox__label::before {
    background-color: #e8e8e8;
}

.select2-container--default .select2-selection--single {
    height: 40px;
    border-color: #e8e8e8;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 10px;
    padding-right: 40px;
    line-height: 40px;
    color: #5a5a5a;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 30px;
    height: 38px;
    border-left: 1px solid #e8e8e8;
}

.select2-dropdown {
    border-color: #e8e8e8;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #e8e8e8;
}

.select2-search--dropdown {
    padding: 8px;
}

.select2-container--default .select2-results__option--selected {
    background-color: #e8e8e8;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #e12429;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e8e8e8;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #e12429;
}

.notice {
    padding: 8px 12px;
    color: #4ca75c;
    background-color: rgba(76, 167, 92, 0.1);
    border: 1px solid rgba(76, 167, 92, 0.2);
    border-radius: 2px;
}
.notice--error {
    color: #f00;
    background-color: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
}

.island {
    background-color: #f7f7f7;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
}
.island--outline {
    background-color: #fff;
}

.counter {
    width: 16px;
    height: 16px;
    font-size: 10px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    color: #000;
    background-color: #e8e8e8;
    border-radius: 8px;
}
.counter--primary {
    color: #fff;
    background-color: #e12429;
}

.quantity {
    display: flex;
    justify-content: space-between;
    height: 40px;
    color: #a1a1a1;
    background-color: #f7f7f7;
    border-radius: 2px;
}
.quantity__btn {
    flex-shrink: 0;
    padding: 0 8px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}
.quantity__btn:hover, .quantity__btn:focus-visible {
    color: #000;
}
.quantity__input {
    width: 24px;
    height: 100%;
    text-align: center;
}

.product-block {
    position: relative;
}
@media (min-width: 980px) {
    .product-block {
        height: 420px;
    }
    .product-block:hover, .product-block:focus-within {
        z-index: 10;
    }
}
.product-block--light {
    height: auto;
    padding: 16px;
    box-shadow: inset -1px 0 0 0 #e8e8e8, inset 0 -1px 0 0 #e8e8e8, -1px -1px 0 0 #e8e8e8, -1px 0 0 0 #e8e8e8, 0 -1px 0 0 #e8e8e8;
}
.product-block--horizontal {
    display: flex;
    align-items: center;
    grid-row-gap: 16px;
    height: auto;
}
.product-block__inner {
    padding: 20px;
    background-color: #fff;
    box-shadow: inset -1px 0 0 0 #e8e8e8, inset 0 -1px 0 0 #e8e8e8, -1px -1px 0 0 #e8e8e8, -1px 0 0 0 #e8e8e8, 0 -1px 0 0 #e8e8e8;
}
@media (min-width: 980px) {
    .product-block__inner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
@media (min-width: 980px) {
    .product-block:hover .product-block__inner, .product-block:focus-within .product-block__inner {
        height: auto;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }
}
.product-block__media {
    position: relative;
    margin-bottom: 20px;
}
.product-block__inner .product-block__media {
    height: 220px
}
.product-block--horizontal .product-block__media {
    margin-bottom: 0;
}
.product-block__badges {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: flex;
}
.product-block__badges-item {
    padding: 0 4px;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    border-radius: 2px;
}
.product-block__badges-item + .product-block__badges-item {
    margin-left: 4px;
}
.product-block__badges-item--bestseller {
    background-color: #e12429;
}
.product-block__badges-item--new {
    background-color: #4ca75c;
}
.product-block__favorite {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
}
@media (min-width: 980px) {
    .product-block__favorite {
        opacity: 0;
    }
}
.product-block:hover .product-block__favorite, .product-block:focus-within .product-block__favorite {
    opacity: 1;
}
.product-block__remove {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
}
.product-block__remove:hover, .product-block__remove:focus-visible {
    color: #e12429;
}
.product-block__icons {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
}
.product-block__icons-item {
    position: relative;
    display: block;
    margin-left: -3px;
    padding: 3px;
    color: #a1a1a1;
    border-radius: 2px;
}
.product-block__icons-item::after {
    position: absolute;
    top: 0;
    left: 100%;
    content: attr(data-name);
    display: none;
    height: 30px;
    margin-left: 8px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 30px;
    white-space: nowrap;
    color: #fff;
    background-color: #e12429;
    border-radius: 2px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.product-block__icons-item:hover {
    color: #fff !important;
    background-color: #e12429;
}
.product-block__icons-item:hover::after {
    display: block;
}
.product-block:hover .product-block__icons-item, .product-block:focus-within .product-block__icons-item {
    color: #e12429;
}
.product-block__photo {
    display: block;
    /*max-width: 200px;*/
    margin: 0 auto;
}
.product-block__inner .product-block__photo {
    text-align: center;
}
.product-block__inner .product-block__photo img{
    max-height: 220px;
}
.product-block--light .product-block__photo {
    /*max-width: 120px;*/
    text-align: center;
}
.product-block--light .product-block__photo img {
    max-height: 120px;
}
.product-block__price {
    display: flex;
    align-items: center;
}
.product-block__price-current {
    font-size: 23px;
    line-height: 29px;
}
.product-block__price-old {
    position: relative;
    margin-left: 8px;
    font-size: 15px;
    line-height: 21px;
    color: #a95457;
}
.product-block__price-old::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    border-top: 2px solid;
    transform: rotate(-10deg);
}
.product-block__bonuses-btn {
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    color: #a1a1a1;
    cursor: pointer;
}
.product-block__bonuses-flyout {
    z-index: 10;
    max-width: 80vw;
    padding: 10px;
    font-size: 12px;
    line-height: 16px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}
.product-block__name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 4px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
    overflow: hidden;
}
.product-block__name:hover, .product-block__name:focus-visible {
    color: #e12429;
}
.product-block__props {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 4px;
    margin-top: 8px;
}
.product-block__props-item {
    padding: 2px 4px;
    background-color: #f7f7f7;
    border-radius: 2px;
}
.product-block__info-bar {
    display: flex;
    align-items: center;
    margin-top: 8px;
}
.product-block__rating {
    display: flex;
    align-items: center;
    margin-left: 8px;
}
.product-block__rating-num {
    margin-left: 4px;
    color: #a1a1a1;
}
.product-block__availability-btn {
    position: relative;
    margin-left: auto;
    font-size: 12px;
    line-height: 18px;
    text-decoration: underline;
    cursor: pointer;
}
.product-block__availability-flyout {
    z-index: 10;
    width: 150%;
    max-width: 80vw;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.product-block__availability-title {
    padding: 14px 20px;
    font-weight: 500;
    color: #fff;
    background-color: #e12429;
}
.product-block__availability-item {
    padding: 14px 20px;
}
.product-block__availability-item + .product-block__availability-item {
    border-top: 1px solid #e8e8e8;
}
.product-block__flyout {
    margin-top: 16px;
}
@media (min-width: 980px) {
    .product-block__flyout {
        display: none;
    }
}
.product-block:hover .product-block__flyout, .product-block:focus-within .product-block__flyout {
    display: block;
}
.product-block__tire {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin: 20px -20px -20px;
    font-weight: 500;
    color: #fff;
    background-color: #e12429;
}
@media (max-width: 979.98px) {
    .product-block__tire {
        display: none;
    }
}
.product-block__tire-icon {
    margin-right: 8px;
}

.add-to-cart {
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 16px;
}

.add-to-favorite {
    display: flex;
    align-items: center;
    grid-column-gap: 8px;
    text-decoration: underline;
    color: #a1a1a1;
}
.add-to-favorite:hover, .add-to-favorite:focus-visible, .add-to-favorite--active {
    color: #e12429;
}

.offer {
    border: 1px solid #e8e8e8;
}
.offer__img {
    width: 100%;
    transition: opacity 0.15s;
}
.offer:hover .offer__img {
    opacity: 0.8;
}
.offer__content {
    padding: 16px 20px;
}
.offer__title {
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 500;
}
.offer:hover .offer__title {
    color: #e12429;
}
.offer__date {
    color: #5a5a5a;
}

.article {
    display: flex;
    flex-direction: column;
}
.article__img {
    flex-shrink: 0;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.15s;
}
.article:hover .article__img {
    opacity: 0.8;
}
@media (min-width: 768px) {
    .article--lg .article__img {
        height: 420px;
    }
}
.article__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 16px 24px;
    border: solid #e8e8e8;
    border-width: 0 1px 1px;
}
.article--lg .article__content {
    padding: 24px 32px;
}
.article__caption {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    color: #a1a1a1;
}
.article__title {
    color: #5a5a5a;
}
.article:hover .article__title {
    color: #e12429;
}
.article--lg .article__title {
    font-size: 23px;
    line-height: 29px;
    font-weight: 500;
    color: #000;
}
.article__text {
    margin-top: 4px;
    color: #5a5a5a;
}
.article__date {
    margin-top: auto;
    padding-top: 12px;
    color: #a1a1a1;
}

.product-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.product-rating__star + .product-rating__star {
    margin-left: 2px;
}
.product-rating__counter {
    text-decoration: underline;
}
.product-rating__counter:hover, .product-rating__counter:focus-visible {
    color: #e12429;
}
@media (max-width: 979.98px) {
    .product-rating__counter {
        width: 100%;
        margin-top: 4px;
    }
}
@media (min-width: 980px) {
    .product-rating__counter {
        margin-left: 8px;
    }
}

.modal {
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow: hidden auto;
}
.modal--visible {
    display: flex;
    background-color: #00000080;
    transition: opacity .3s ease, visibility .3s ease;
}
.modal__dialog {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: auto;
    padding: 16px;
    background-color: var(--color-bg);
    border-radius: 2px;
}
@media (min-width: 980px) {
    .modal__dialog {
        padding: 32px;
    }
}
.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #e12429;
}
.modal__title {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.backdrop {
    position: fixed;
    z-index: 29;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
}
.backdrop--visible {
    display: block;
}

.banners {
    margin: 0;
}
.banners__slide {
    position: relative;
    display: flex;
    padding-bottom: 23%;
    background-position: center;
    background-size: cover;
}
.banners--sm .banners__slide {
    height: 100px;
    padding-bottom: 0;
}
@media (max-width: 479.98px) {
    .banners--sm .banners__slide {
        height: 60px;
    }
}
.banners__content {
    position: absolute;
    top: 50%;
    max-width: 560px;
    transform: translateY(-50%);
}
@media (min-width: 480px) {
    .banners__content {
        padding: 0 80px;
    }
}
.banners__caption {
    margin-bottom: 8px;
    font-weight: 500;
}
.banners__title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
}
.banners__text {
    margin-top: 8px;
}
.banners__btn {
    margin-top: 20px;
}
.banners__nav {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}
@media (max-width: 479.98px) {
    .banners__nav {
        display: none;
    }
}
.banners--sm .banners__nav {
    right: 16px;
    left: 16px;
}
.banners__nav-btn {
    padding: 4px;
    border-radius: 50%;
    color: #fff;
    background-color: #e12429;
    pointer-events: auto;
}
.banners__nav-btn:hover, .banners__nav-btn:focus-visible {
    background-color: #f21318;
    border-color: #f21318;
}
.banners__nav-btn:active {
    background-color: #d41d22;
    border-color: #d41d22;
}
.banners__pagination {
    position: absolute;
    z-index: 1;
    bottom: 16px !important;
    display: flex;
    justify-content: center;
}
@media (min-width: 768px) {
    .banners__pagination {
        bottom: 32px !important;
    }
}
.banners--sm .banners__pagination {
    bottom: 8px !important;
}
.banners__pagination-item {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background-color: #fff;
    border-radius: 50%;
}
.banners__pagination-item--active {
    background-color: #e12429;
}
.banners--sm .banners__pagination-item {
    width: 6px;
    height: 6px;
    margin: 0 4px;
}

.section {
    margin-top: 40px;
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .section {
        margin-top: 64px;
        margin-bottom: 64px;
    }
}
.section__header {
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
}
.section__header--underline {
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e8e8;
}
.section__title {
    font-size: 28px;
    line-height: 34px;
}
@media (min-width: 1200px) {
    .section__title {
        font-size: 30px;
        line-height: 36px;
    }
}
.section__more {
    flex-shrink: 0;
    margin-left: auto;
    font-size: 15px;
    line-height: 21px;
}
.section__more:hover, .section__more:focus-visible {
    color: #e12429;
}

.choice {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px 20px;
}
@media (min-width: 980px) {
    .choice {
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 32px;
    }
}
.choice__form {
    padding: 24px 16px;
}
@media (min-width: 980px) {
    .choice__form {
        padding: 40px 32px;
    }
}
.choice__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.choice__title {
    font-size: 23px;
    line-height: 29px;
}
.choice__toggle {
    display: flex;
}
@media (max-width: 479.98px) {
    .choice__toggle {
        width: 100%;
        margin-top: 8px;
    }
}
.choice__toggle-btn {
    color: #5a5a5a;
}
.choice__toggle-btn:hover, .choice__toggle-btn:focus-visible {
    color: #e12429;
}
.choice__toggle-btn + .choice__toggle-btn {
    margin-left: 24px;
}
.choice__toggle-btn--active {
    color: #e12429;
    border-bottom: 1px solid;
    pointer-events: none;
}
.choice__content {
    display: none;
}
.choice__content--visible {
    display: block;
}
.choice__row {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    margin: -8px;
}
@media (min-width: 980px) {
    .choice__row {
        margin-right: -20px;
        margin-left: -20px;
    }
}
.choice__col {
    width: 50%;
    padding: 8px;
}
@media (min-width: 980px) {
    .choice__col {
        position: relative;
        width: 33.3333333333%;
        padding-right: 20px;
        padding-left: 20px;
    }
    .choice__col--wide .choice__label {
        white-space: nowrap;
    }
    .choice__col--action {
        margin-left: auto;
    }
    .choice__col::after {
        content: attr(data-divider);
        position: absolute;
        right: -4px;
        font-size: 18px;
        line-height: 40px;
        color: #a1a1a1;
    }
}
.choice__tire-top {
    display: flex;
    align-items: flex-end;
    margin-bottom: 16px;
}
@media (max-width: 479.98px) {
    .choice__tire-top {
        row-gap: 16px;
        flex-wrap: wrap;
    }
}
.choice__tire-top-col {
    flex: 1 0 0;
    max-width: 150px;
    margin-right: 16px;
}
.choice__tire-top-divider {
    margin-right: 16px;
    font-size: 18px;
    line-height: 40px;
    color: #a1a1a1;
}
@media (max-width: 400px) {
    .choice__tire-top {
        row-gap: 8px;
    }
    .choice__tire-top-break {
        width: 100%;
    }
}
.choice__tire-bottom {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}
@media (max-width: 1199.98px) {
    .choice__tire-bottom {
        flex-wrap: wrap;
    }
}
@media (min-width: 1440px) {
    .choice__tire-bottom {
        gap: 40px;
    }
}
.choice__tire-bottom-col {
    flex: 1 0 0;
    width: calc(50% - 8px);
}
@media (min-width: 480px) {
    .choice__tire-bottom-col {
        max-width: 150px;
    }
}
.choice__tire-actions {
    width: 100%;
    margin-top: 8px;
}
@media (min-width: 768px) {
    .choice__tire-actions {
        width: auto;
        margin: 0 0 0 auto;
    }
}
@media (min-width: 980px) {
    .choice__tire-actions {
        width: 100%;
        margin: 8px 0 0 0;
    }
}
@media (min-width: 1200px) {
    .choice__tire-actions {
        width: auto;
        margin: 0 0 0 auto;
    }
}
.choice__disc-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin: -8px;
}
@media (min-width: 1200px) {
    .choice__disc-row {
        margin-right: -20px;
        margin-left: -20px;
    }
}
.choice__disc-col {
    width: 50%;
    max-width: 180px;
    padding: 8px;
}
@media (min-width: 1200px) {
    .choice__disc-col {
        width: 33.3333333333%;
    }
}
@media (min-width: 1440px) {
    .choice__disc-col {
        max-width: 204px;
        padding-right: 20px;
        padding-left: 20px;
    }
}
.choice__disc-break {
    width: 100%;
}
@media (min-width: 1200px) {
    .choice__disc-break {
        display: none;
    }
}
.choice__disc-actions {
    width: 100%;
    margin-top: 8px;
    padding: 8px;
}
@media (min-width: 768px) {
    .choice__disc-actions {
        width: auto;
        margin: 0 0 0 auto;
    }
}
@media (min-width: 980px) {
    .choice__disc-actions {
        width: 100%;
        margin: 8px 0 0;
    }
}
@media (min-width: 1200px) {
    .choice__disc-actions {
        width: auto;
        margin: 0 0 0 auto;
        padding-right: 20px;
        padding-left: 20px;
    }
}
.choice__label {
    margin-bottom: 8px;
}
.choice__actions {
    display: flex;
}
.choice__actions-btn + .choice__actions-btn {
    margin-left: 12px;
}
.choice__popular {
    padding: 24px 20px;
}
@media (min-width: 980px) {
    .choice__popular {
        grid-column: span 2;
    }
}
.choice__popular-title {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}
.choice__popular-title:not(:first-child) {
    margin-top: 20px;
}
.choice__popular-list {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 4px 12px;
}

.choice-car {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    margin: -8px;
}
@media (min-width: 980px) {
    .choice-car {
        margin-right: -20px;
        margin-left: -20px;
    }
}
.choice-car__col {
    width: 50%;
    padding: 8px;
}
@media (min-width: 980px) {
    .choice-car__col {
        width: 33.3333333333%;
        padding-right: 20px;
        padding-left: 20px;
    }
}
.choice-car__action {
    padding: 8px;
}
@media (max-width: 979.98px) {
    .choice-car__action {
        width: 100%;
        margin-top: 8px;
    }
}
@media (min-width: 980px) {
    .choice-car__action {
        padding-right: 20px;
        padding-left: 20px;
    }
}
.choice-car__label {
    margin-bottom: 8px;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .compilation-products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 980px) {
    .compilation-products {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) {
    .compilation-products {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1440px) {
    .compilation-products {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 480px) {
    .compilation-related {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {
    .compilation-related {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) {
    .compilation-related {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1440px) {
    .compilation-related {
        grid-template-columns: repeat(5, 1fr);
    }
}

.compilation-offers {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}
@media (min-width: 768px) {
    .compilation-offers {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 980px) {
    .compilation-offers {
        grid-template-columns: repeat(3, 1fr);
    }
}

.compilation-articles {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}
@media (min-width: 768px) {
    .compilation-articles {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1200px) {
    .compilation-articles {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr 1fr;
    }
}
@media (min-width: 768px) {
    .compilation-articles__wide {
        grid-column: span 2;
        grid-row: 1/-1;
    }
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
}
@media (min-width: 768px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 980px) {
    .features {
        grid-template-columns: repeat(4, 1fr);
    }
}
.features__col {
    display: flex;
    align-items: center;
}
.features__img {
    flex-shrink: 0;
    margin-right: 32px;
}
.features__title {
    margin-bottom: 4px;
    font-weight: 500;
}

.brands {
    padding: 0 16px;
    text-align: center;
}
.brands__nav {
    position: absolute;
    z-index: 1;
    top: 50%;
    color: #a1a1a1;
    transform: translateY(-50%);
}
.brands__nav:hover {
    color: #e12429;
}
.brands__nav--prev {
    left: 0;
}
.brands__nav--next {
    right: 0;
}
.brands__col {
    padding: 0 16px;
}

.categories {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 480px) {
    .categories {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {
    .categories {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 980px) {
    .categories {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (min-width: 1200px) {
    .categories {
        grid-template-columns: repeat(7, 1fr);
    }
}
.categories__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    text-align: center;
    background-color: #f7f7f7;
    box-shadow: inset -1px 0 0 0 #e8e8e8, inset 0 -1px 0 0 #e8e8e8, -1px -1px 0 0 #e8e8e8, -1px 0 0 0 #e8e8e8, 0 -1px 0 0 #e8e8e8;
}
@media (min-width: 480px) {
    .categories__item {
        padding: 20px;
    }
}
.categories__img {
    width: 92px;
    height: 92px;
    background-color: #fff;
    border-radius: 46px;
}
.categories__title {
    margin: auto;
    padding: 16px 0 12px;
}
.categories__item:hover .categories__title {
    color: #e12429;
}
.categories__counter {
    color: #a1a1a1;
}

.preset {
    display: flex;
    flex-wrap: wrap;
    grid-row-gap: 24px;
    padding: 10px 20px;
    background-color: #f7f7f7;
    border-radius: 2px;
}
.preset--lg {
    position: relative;
    flex-direction: column;
    padding: 32px 24px;
}
.preset__car {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 16px 20px;
    align-items: center;
}
@media (min-width: 480px) {
    .preset__car {
        grid-template-columns: repeat(3, auto);
    }
}
.preset__car-img {
    width: 60px;
    height: 60px;
    border-radius: 30px;
}
.preset__car-name {
    font-weight: 500;
}
@media (max-width: 479.98px) {
    .preset__car-change {
        grid-column: 1/-1;
    }
}
.preset__clear {
    display: flex;
    align-items: center;
    margin-left: auto;
    font-weight: 500;
    color: #a1a1a1;
}
.preset__clear:hover {
    color: #e12429;
}
@media (min-width: 768px) {
    .preset--lg .preset__clear {
        position: absolute;
        top: 34px;
        right: 24px;
    }
}
.preset__clear-icon {
    margin-left: 8px;
}
.preset__title {
    margin-bottom: 16px;
    font-size: 23px;
    line-height: 29px;
}
.preset__row {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 16px;
}
@media (min-width: 768px) {
    .preset__row {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 980px) {
    .preset__row {
        grid-template-columns: repeat(4, 1fr);
    }
}
.preset__caption {
    margin-bottom: 4px;
    font-weight: 500;
}
.preset__list {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 4px 12px;
}

@media (max-width: 979.98px) {
    .alternative {
        display: none;
    }
}
.alternative__section {
    padding: 20px;
}
.alternative__section + .alternative__section {
    border-top: 1px solid #e8e8e8;
}
.alternative__prop {
    font-weight: 500;
}
.alternative__title {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
}
.alternative__caption {
    margin: 8px 0 4px;
    font-weight: 500;
}

.filter__mobile {
    display: flex;
    align-items: center;
    margin-left: auto;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
}
@media (min-width: 980px) {
    .filter__mobile {
        display: none;
    }
}
.filter__mobile-icon {
    margin-right: 8px;
}
@media (max-width: 979.98px) {
    .filter__island {
        position: fixed;
        z-index: 30;
        top: 0;
        left: 0;
        display: none;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }
}
.filter--visible .filter__island {
    display: block;
}
.filter__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
}
@media (min-width: 980px) {
    .filter__header {
        display: none;
    }
}
.filter__title {
    font-size: 23px;
    line-height: 29px;
}
.filter__section {
    padding: 20px;
}
.filter__section + .filter__section {
    border-top: 1px solid #e8e8e8;
}
.filter__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 500;
}
.filter__toggle--collapse .filter__chevron {
    transform: rotate(-90deg);
}
.filter__collapse {
    padding-top: 20px;
}
.filter__row + .filter__row {
    margin-top: 12px;
}
.filter__table {
    display: flex;
    align-items: center;
}
.filter__table-cell {
    width: 50%;
}
.filter__label {
    margin-bottom: 8px;
}
.filter__range-row {
    display: flex;
    align-items: center;
}
.filter__range-field {
    flex-grow: 1;
}
.filter__range-divider {
    flex-shrink: 0;
    width: 12px;
    margin: 0 8px;
    border-bottom: 1px solid #a1a1a1;
}
.filter__tabs-pill {
    display: flex;
    margin-bottom: 20px;
}
.filter__tabs-btn {
    flex: 1 0 0;
    height: 35px;
    text-align: center;
    border: 1px solid #a1a1a1;
}
.filter__tabs-btn:first-child {
    border-radius: 2px 0 0 2px;
}
.filter__tabs-btn:last-child {
    border-radius: 0 2px 2px 0;
}
.filter__tabs-btn--active {
    color: #fff;
    background-color: #e12429;
    border-color: #e12429;
}
.filter__tabs-content {
    display: none;
}
.filter__tabs-content--visible {
    display: block;
}
.filter__reset {
    width: 100%;
    text-align: center;
    text-decoration: underline;
    color: #a1a1a1;
}
.filter__reset:hover {
    color: #e12429;
}

.irs--round .irs-line {
    height: 3px;
    background-color: #d8d7d7;
}

.irs--round .irs-bar {
    height: 3px;
    background-color: #e12429;
}

.irs--round .irs-handle {
    top: 29px;
    width: 18px;
    height: 18px;
    border: 3px solid #e12429;
}

.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {
    padding: 0;
    font-size: 12px;
    line-height: 18px;
    color: #000;
    background: 0;
}
.irs--round .irs-from::before, .irs--round .irs-to::before, .irs--round .irs-single::before {
    content: none;
}

.irs-from, .irs-to, .irs-single {
    top: 10px;
}

.irs--round .irs-min, .irs--round .irs-max {
    top: 10px;
    padding: 0;
    font-size: 12px;
    line-height: 18px;
    color: #a1a1a1;
    background: 0;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 979.98px) {
    .catalog-toolbar {
        display: none;
    }
}
.catalog-toolbar__sort {
    display: flex;
    align-items: center;
    width: 30%;
}
.catalog-toolbar__sort-label {
    margin-right: 16px;
}
.catalog-toolbar__sort-btn {
    display: flex;
    align-items: center;
    padding: 9px 10px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}
.catalog-toolbar__sort-btn:hover {
    border-color: #d8d7d7;
}
.catalog-toolbar__sort-btn::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 16px;
    border-width: 5px 4px 0 4px;
    border-style: solid;
    border-color: #888 transparent transparent transparent;
}
.catalog-toolbar__sort-dropdown {
    position: absolute;
    display: none;
    z-index: 20;
    padding: 4px 0;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.catalog-toolbar__sort-select:focus-within .catalog-toolbar__sort-btn::after {
    transform: scaleY(-1);
}
.catalog-toolbar__sort-select:focus-within .catalog-toolbar__sort-dropdown {
    display: block;
}
.catalog-toolbar__sort-item {
    display: block;
    padding: 6px 10px;
}
.catalog-toolbar__sort-item:hover {
    background-color: #f7f7f7;
}
.catalog-toolbar__sort-item--active {
    color: #fff;
    background-color: #e12429;
    pointer-events: none;
}
.catalog-toolbar__search {
    display: flex;
}

.catalog-products {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .catalog-products {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1080px) {
    .catalog-products {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) {
    .catalog-products {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination {
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.pagination__item {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-weight: 500;
    border-radius: 2px;
}
.pagination__item + .pagination__item {
    margin-left: 4px;
}
.pagination__item:hover {
    background-color: #f7f7f7;
}
.pagination__item--active {
    color: #fff;
    background-color: #e12429;
    pointer-events: none;
}
.pagination__ellipsis {
    margin: 0 8px;
}
.pagination__all {
    margin-left: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #e12429;
}
.pagination__all:hover {
    text-decoration: underline;
}
.pagination__nav {
    color: #a1a1a1;
}
.pagination__nav:hover {
    color: #e12429;
}
.pagination__nav--prev {
    margin-right: 8px;
}
.pagination__nav--next {
    margin-left: 8px;
}

.viewed {
    position: sticky;
    z-index: 20;
    bottom: 0;
}
.viewed__badge {
    display: inline-flex;
    align-items: center;
    height: 40px;
    background-color: #fff;
    border: 1px solid #e8e8e8;
}
.viewed__badge--active {
    width: 100%;
}
.viewed__icon {
    padding: 8px;
    text-align: center;
    color: #fff;
    background-color: #e12429;
}
.viewed__counter {
    margin: 0 24px 0 16px;
    color: #5a5a5a;
}
.viewed__toggle {
    display: flex;
    align-items: center;
    margin: 0 16px 0 auto;
    color: #e12429;
}
@media (max-width: 479.98px) {
    .viewed__toggle {
        display: none;
    }
}
.viewed__badge:hover .viewed__toggle {
    text-decoration: underline;
}
.viewed__toggle-icon {
    margin-left: 8px;
}
.viewed__badge--active .viewed__toggle-icon {
    transform: rotate(180deg);
}
.viewed__content {
    display: none;
    background-color: #fff;
    border: 1px solid #e8e8e8;
}
.viewed__row {
    display: flex;
}
.viewed__col {
    width: 185px;
}
.viewed__nav {
    position: absolute;
    z-index: 1;
    top: 50%;
    padding: 4px;
    border-radius: 50%;
    color: #fff;
    background-color: #e12429;
    transform: translateY(-50%);
}
.viewed__nav:hover, .viewed__nav:focus-visible {
    background-color: #f21318;
    border-color: #f21318;
}
.viewed__nav:active {
    background-color: #d41d22;
    border-color: #d41d22;
}
.viewed__nav--prev {
    left: 16px;
}
.viewed__nav--next {
    right: 16px;
}
.viewed__nav--disabled {
    display: none;
}

.kit {
    padding: 16px 16px 32px;
    box-shadow: inset -1px 0 0 0 #e8e8e8, inset 0 -1px 0 0 #e8e8e8, -1px -1px 0 0 #e8e8e8, -1px 0 0 0 #e8e8e8, 0 -1px 0 0 #e8e8e8;
}
.kit:hover {
    position: relative;
    z-index: 1;
    box-shadow: inset -1px 0 0 0 #e12429, inset 0 -1px 0 0 #e12429, -1px -1px 0 0 #e12429, -1px 0 0 0 #e12429, 0 -1px 0 0 #e12429;
}
@media (min-width: 768px) {
    .kit {
        display: flex;
        align-items: center;
        padding: 32px 24px;
    }
}
.kit__divider {
    margin: 16px;
    font-size: 27px;
    text-align: center;
    color: #e12429;
}
@media (min-width: 1200px) {
    .kit__divider {
        margin: 32px;
    }
}
@media (max-width: 767.98px) {
    .kit__divider--equal {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .kit__total {
        margin-top: 16px;
        text-align: center;
    }
}
.kit__total-caption {
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 18px;
    color: #a1a1a1;
}
@media (max-width: 1199.98px) {
    .kit__total-caption {
        display: none;
    }
}
.kit__total-price {
    margin-bottom: 16px;
    font-size: 23px;
    line-height: 29px;
    font-weight: 500;
    color: #e12429;
}
.kit__total-equal {
    margin-right: 12px;
}
@media (min-width: 768px) {
    .kit__total-equal {
        display: none;
    }
}
.kit__total-btn {
    white-space: nowrap;
}

.product-card__code {
    margin-bottom: 8px;
    color: #a1a1a1;
}
@media (min-width: 980px) {
    .product-card__code {
        display: none;
    }
}
.product-card__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 32px 24px;
}
@media (min-width: 980px) {
    .product-card__grid {
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 40px;
    }
}
.product-card__col {
    min-width: 0;
}
.product-card__col--wide {
    grid-column: 1/-1;
}

.product-gallery__main {
    padding: 16px;
    text-align: center;
    border: 1px solid #e8e8e8;
}
.product-gallery__thumbs {
    margin-top: 16px;
}
.product-gallery__thumbs-slide {
    width: 80px;
    height: 80px;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
}
.product-gallery__thumbs-slide--active {
    border-color: #5a5a5a;
}
.product-gallery__nav {
    position: absolute;
    z-index: 1;
    top: 50%;
    padding: 4px;
    border-radius: 50%;
    color: #fff;
    background-color: #e12429;
    transform: translateY(-50%);
    visibility: hidden;
}
.product-gallery__nav:hover, .product-gallery__nav:focus-visible {
    background-color: #f21318;
    border-color: #f21318;
}
.product-gallery__nav:active {
    background-color: #d41d22;
    border-color: #d41d22;
}
.product-gallery__nav--prev {
    left: 8px;
}
.product-gallery__nav--next {
    right: 8px;
}
.product-gallery__nav--disabled {
    display: none;
}
.product-gallery__thumbs:hover .product-gallery__nav {
    visibility: visible;
}

.product-info {
    margin-bottom: 32px;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
}
@media (min-width: 980px) {
    .product-info {
        margin-bottom: 24px;
    }
}
.product-info__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #e8e8e8;
}
.product-info__code {
    margin-left: auto;
    color: #a1a1a1;
}
@media (max-width: 979.98px) {
    .product-info__code {
        display: none;
    }
}
.product-info__brand {
    margin-left: 24px;
    padding: 0 4px;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
}
.product-info__brand-img {
    height: 40px;
    object-fit: contain;
}
.product-info__content {
    padding: 24px;
}
.product-info__price {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.product-info__price-current {
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
}
.product-info__price-old {
    position: relative;
    margin-left: 16px;
    font-size: 15px;
    line-height: 21px;
    color: #a95457;
}
.product-info__price-old::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    border-top: 2px solid;
    transform: rotate(-10deg);
}
.product-info__row {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
}
@media (min-width: 768px) {
    .product-info__row {
        grid-template-columns: 1fr 1fr;
    }
}
.product-info__availability {
    display: inline-block;
    margin-bottom: 16px;
}
.product-info__one-click {
    margin: 16px 0 24px;
}
.product-info__prop {
    display: flex;
    margin-top: 8px;
}
.product-info__prop-key {
    margin-right: 22px;
    font-weight: 500;
}
.product-info__euro {
    display: flex;
    grid-gap: 8px;
}
.product-info__euro-item {
    height: 20px;
    padding: 0 6px;
    background-color: #e8e8e8;
    border-radius: 2px;
}
.product-info__euro-item--primary {
    background-color: #e12429;
}
.product-info__feature {
    display: flex;
    align-items: center;
}
.product-info__feature + .product-info__feature {
    margin-top: 16px;
}
.product-info__feature-icon {
    flex-shrink: 0;
    margin-right: 12px;
    color: #e12429;
}
.product-info__feature-title {
    font-weight: 500;
}
.product-info__feature-text {
    font-size: 12px;
    line-height: 18px;
}
.product-info__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid #e8e8e8;
}
@media (max-width: 479.98px) {
    .product-info__footer {
        flex-wrap: wrap;
    }
}
.product-info__share {
    display: flex;
    color: #5a5a5a;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
}
.product-info__share:hover, .product-info__share:focus-visible {
    color: #e12429;
    border-color: #e12429;
}
.product-info__share-text {
    padding: 9px 22px;
}
.product-info__share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-left: 1px solid #e8e8e8;
}
.product-info__share:hover .product-info__share-icon, .product-info__share:focus-visible .product-info__share-icon {
    border-color: #e12429;
}
.product-info__hint {
    margin-left: 20px;
    font-size: 12px;
    line-height: 18px;
    color: #5a5a5a;
}
@media (max-width: 479.98px) {
    .product-info__hint {
        width: 100%;
        margin: 16px 0 0;
    }
}

.product-tabs {
    padding-bottom: 40px;
    border-bottom: 1px solid #e8e8e8;
}
.product-tabs__header {
    position: relative;
    margin-bottom: 24px;
    display: flex;
}
@media (min-width: 768px) {
    .product-tabs__header::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        border-bottom: 1px solid #e8e8e8;
    }
}
.product-tabs__carousel {
    margin: 0;
}
.product-tabs__btn {
    width: auto;
    padding: 14px 24px;
    background-color: #f7f7f7;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
}
.product-tabs__btn--active {
    font-weight: 500;
    color: #e12429;
    background-color: #fff;
    box-shadow: inset 0 -2px 0 #e12429;
}
.product-tabs__content {
    display: none;
}
.product-tabs__content--visible {
    display: block;
}
.product-tabs__content-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.product-tabs__content-title {
    font-size: 23px;
    line-height: 29px;
    font-weight: 500;
}
.product-tabs__content-counter {
    margin-left: 12px;
    font-size: 23px;
    line-height: 29px;
    color: #a1a1a1;
}
.product-tabs__content-action {
    margin-left: auto;
}

.product-params {
    margin-bottom: 24px;
}
@media (min-width: 768px) {
    .product-params {
        column-count: 2;
        column-gap: 40px;
    }
}
.product-params__row {
    display: flex;
    padding: 8px 0;
}
.product-params__key {
    position: relative;
    flex-grow: 1;
    margin-right: 8px;
}
.product-params__key::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 5px;
    right: 0;
    left: 0;
    border-bottom: 1px solid #e8e8e8;
}
.product-params__name {
    padding-right: 8px;
    color: #a1a1a1;
    background-color: #fff;
}

.product-availability__toggle {
    display: flex;
    margin-bottom: 24px;
}
.product-availability__toggle-btn {
    display: flex;
    align-items: center;
}
.product-availability__toggle-btn:hover, .product-availability__toggle-btn:focus-visible {
    color: #e12429;
}
.product-availability__toggle-btn--active {
    color: #e12429;
    text-decoration: underline;
    pointer-events: none;
}
.product-availability__toggle-btn + .product-availability__toggle-btn {
    margin-left: 32px;
}
.product-availability__toggle-icon {
    margin-right: 8px;
}
.product-availability__content {
    display: none;
}
.product-availability__content--visible {
    display: block;
}
@media (min-width: 768px) {
    .product-availability__table-row {
        display: grid;
        grid-template-columns: 3fr 0.5fr 1fr;
        grid-column-gap: 16px;
        align-items: center;
        padding: 12px 16px;
        border: solid #e8e8e8;
        border-width: 0 1px 1px 1px;
    }
}
.product-availability__table-header {
    color: #fff;
    background-color: #e12429;
    border-color: #e12429;
    border-radius: 2px 2px 0 0;
}
@media (max-width: 767.98px) {
    .product-availability__table-header {
        display: none;
    }
}
@media (min-width: 768px) {
    .product-availability__main {
        display: flex;
        align-items: center;
    }
}
.product-availability__address {
    font-weight: 500;
}
@media (max-width: 767.98px) {
    .product-availability__address {
        padding: 8px 16px;
        color: #fff;
        background-color: #e12429;
    }
}
.product-availability__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
@media (max-width: 767.98px) {
    .product-availability__tags {
        padding: 8px 16px;
        border: solid #e8e8e8;
        border-width: 0 1px 1px;
    }
}
@media (min-width: 768px) {
    .product-availability__tags {
        margin-left: 16px;
    }
}
.product-availability__tags-item {
    padding: 1px 12px;
    color: #5a5a5a;
    background-color: #f7f7f7;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
}
@media (max-width: 767.98px) {
    .product-availability__section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 16px;
        border: solid #e8e8e8;
        border-width: 0 1px 1px;
    }
}
@media (min-width: 768px) {
    .product-availability__title {
        display: none;
    }
}
.product-availability__quantity {
    font-weight: 500;
}
.product-availability__map {
    height: 480px;
}

@media (min-width: 980px) {
    .product-delivery__description {
        width: 60%;
    }
}
.product-delivery__filter {
    display: flex;
    margin: 24px 0;
}
.product-delivery__filter-item + .product-delivery__filter-item {
    margin-left: 16px;
}
.product-delivery__filter-label {
    margin-bottom: 8px;
    font-weight: 500;
}
.product-delivery__result {
    padding: 24px;
    background-color: #f7f7f7;
    border-radius: 2px;
}
@media (min-width: 980px) {
    .product-delivery__result-row {
        display: flex;
    }
}
@media (max-width: 979.98px) {
    .product-delivery__result-description {
        margin-bottom: 24px;
    }
}
@media (min-width: 980px) {
    .product-delivery__result-description {
        width: 50%;
        padding-right: 40px;
    }
}
.product-delivery__result-title {
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
}
.product-delivery__result-section {
    margin-top: 12px;
}
.product-delivery__result-map {
    flex-grow: 1;
    height: 260px;
}
.product-delivery__result-info {
    display: flex;
    margin-top: 24px;
    font-weight: 500;
    color: #a1a1a1;
}
.product-delivery__result-info-icon {
    flex-shrink: 0;
    margin-right: 8px;
}

.product-reviews__item {
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 2px;
}
.product-reviews__item + .product-reviews__item {
    margin-top: 24px;
}
@media (min-width: 980px) {
    .product-reviews__item {
        display: flex;
        align-items: center;
        padding: 24px 32px;
    }
}
@media (max-width: 979.98px) {
    .product-reviews__summary {
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid #e8e8e8;
    }
}
@media (min-width: 980px) {
    .product-reviews__summary {
        flex-shrink: 0;
        width: 22%;
        margin-right: 48px;
        padding-right: 48px;
        border-right: 1px solid #e8e8e8;
    }
}
.product-reviews__summary-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.product-reviews__summary-section {
    margin-top: 12px;
}
.product-reviews__author {
    font-weight: 500;
}
.product-reviews__date {
    margin-left: 12px;
    color: #a1a1a1;
}
.product-reviews__total {
    display: flex;
    align-items: center;
    font-weight: 500;
}
@media (max-width: 979.98px) {
    .product-reviews__total {
        margin-left: auto;
    }
}
.product-reviews__total-star {
    margin: 0 2px 0 8px;
}
.product-reviews__rating {
    display: flex;
    margin-top: 2px;
}
.product-reviews__comment {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-reviews__comment-section + .product-reviews__comment-section {
    margin-top: 24px;
}
.product-reviews__comment-title {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
}
.product-reviews__useful {
    display: flex;
    align-items: baseline;
    column-gap: 8px;
    color: #5a5a5a;
}
@media (max-width: 979.98px) {
    .product-reviews__useful {
        order: 1;
        margin-top: 24px;
    }
}
@media (min-width: 980px) {
    .product-reviews__useful {
        align-self: flex-end;
    }
}
.product-reviews__useful-counter {
    padding: 0 6px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
    color: #fff;
    background-color: #e8e8e8;
    border-radius: 2px;
}
.product-reviews__useful-counter--positive {
    background-color: #4ca75c;
}
.product-reviews__useful-counter--negative {
    background-color: #e12429;
}
.product-reviews__useful-positive {
    color: #4ca75c;
}
.product-reviews__useful-negative {
    color: #e12429;
}
.product-reviews__useful-btn {
    margin-right: 4px;
    text-decoration: underline;
}
.product-reviews__useful-btn:hover, .product-reviews__useful-btn:focus-visible {
    text-decoration: none;
}

.product-tests__item {
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 2px;
}
.product-tests__item + .product-tests__item {
    margin-top: 24px;
}
@media (min-width: 980px) {
    .product-tests__item {
        display: flex;
        align-items: center;
        padding: 24px 32px;
    }
}
@media (max-width: 979.98px) {
    .product-tests__summary {
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid #e8e8e8;
    }
}
@media (min-width: 980px) {
    .product-tests__summary {
        flex-shrink: 0;
        width: 25%;
        margin-right: 48px;
        padding-right: 48px;
        border-right: 1px solid #e8e8e8;
    }
}
.product-tests__title {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
}
.product-tests__row {
    margin-top: 2px;
}
.product-tests__comment {
    display: flex;
    margin-top: 8px;
}
.product-tests__comment-icon {
    margin-right: 8px;
    color: #a1a1a1;
}
.product-tests__content {
    flex-grow: 1;
}
.product-tests__section {
    display: flex;
    align-items: flex-start;
}
.product-tests__section + .product-tests__section {
    margin-top: 24px;
}
.product-tests__section-icon {
    flex-shrink: 0;
    width: 22px;
    margin-right: 12px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    border-radius: 2px;
}
.product-tests__section-icon--positive {
    background-color: #4ca75c;
}
.product-tests__section-icon--negative {
    background-color: #e12429;
}

.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6, .wysiwyg p {
    margin-top: 1em;
    margin-bottom: 0.5em;
}
.wysiwyg h1:first-child, .wysiwyg h2:first-child, .wysiwyg h3:first-child, .wysiwyg h4:first-child, .wysiwyg h5:first-child, .wysiwyg h6:first-child, .wysiwyg p:first-child {
    margin-top: 0;
}
.wysiwyg h1:last-child, .wysiwyg h2:last-child, .wysiwyg h3:last-child, .wysiwyg h4:last-child, .wysiwyg h5:last-child, .wysiwyg h6:last-child, .wysiwyg p:last-child {
    margin-bottom: 0;
}
.wysiwyg h1 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
}
.wysiwyg h2 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
}
.wysiwyg h3 {
    font-size: 23px;
    line-height: 29px;
    font-weight: 500;
}
.wysiwyg h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}
.wysiwyg h5 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}
.wysiwyg h6 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.cart-final {
    display: flex;
    flex-direction: column;
    grid-row-gap: 32px;
}
.cart-final__title {
    display: flex;
    font-size: 23px;
    line-height: 29px;
}
.cart-final__title-icon {
    margin-right: 16px;
    color: #e12429;
}
.cart-final__product {
    display: flex;
    align-items: center;
    margin: 0 -16px;
    padding: 10px 16px;
    background-color: #f7f7f7;
}
@media (min-width: 980px) {
    .cart-final__product {
        margin: 0 -32px;
        padding: 10px 32px;
    }
}
.cart-final__product-img {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: 30px;
}
.cart-final__product-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 8px 24px;
}
@media (min-width: 768px) {
    .cart-final__product-info {
        flex-wrap: nowrap;
    }
}
.cart-final__product-name {
    font-weight: 500;
}
.cart-final__product-quantity {
    flex-shrink: 0;
}
.cart-final__product-price {
    flex-shrink: 0;
    font-size: 23px;
    line-height: 29px;
    font-weight: 500;
}
@media (min-width: 768px) {
    .cart-final__total {
        display: flex;
        align-items: center;
        grid-column-gap: 16px;
    }
}
.cart-final__total-quantity {
    font-weight: 500;
    color: #e12429;
}
.cart-final__total-btn {
    width: 100%;
}
@media (min-width: 768px) {
    .cart-final__total-btn {
        width: auto;
    }
}
.cart-final__total-next {
    margin: 16px 0 8px;
}
@media (min-width: 768px) {
    .cart-final__total-next {
        margin: 0 0 0 auto;
    }
}
.cart-final__compilation-title {
    margin-bottom: 24px;
    font-weight: 500;
}
.cart-final__compilation-carousel {
    position: relative;
    border: solid #e8e8e8;
    border-width: 1px 0 0 1px;
}
.cart-final__compilation-nav {
    position: absolute;
    z-index: 1;
    top: 50%;
    padding: 4px;
    border-radius: 50%;
    color: #fff;
    background-color: #e12429;
    transform: translateY(-50%);
}
.cart-final__compilation-nav:hover, .cart-final__compilation-nav:focus-visible {
    background-color: #f21318;
    border-color: #f21318;
}
.cart-final__compilation-nav:active {
    background-color: #d41d22;
    border-color: #d41d22;
}
.cart-final__compilation-nav--prev {
    left: -16px;
}
.cart-final__compilation-nav--next {
    right: -16px;
}
.cart-final__compilation-nav--disabled {
    display: none;
}
.cart-final__category {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: #f7f7f7;
    box-shadow: inset -1px 0 0 0 #e8e8e8, inset 0 -1px 0 0 #e8e8e8, -1px -1px 0 0 #e8e8e8, -1px 0 0 0 #e8e8e8, 0 -1px 0 0 #e8e8e8;
}
.cart-final__category-img {
    width: 60px;
    height: 60px;
    margin-right: 16px;
    background-color: #fff;
    border-radius: 30px;
}
.cart-final__category-name {
    margin-bottom: 8px;
}
.cart-final__category-count {
    color: #a1a1a1;
}

.map-balloon {
    padding: 8px 16px 8px 0;
    font: 14px/20px "Roboto", sans-serif;
}
.map-balloon__address {
    display: flex;
    align-items: center;
}
.map-balloon__icon {
    margin-right: 8px;
    color: #e12429;
}
.map-balloon__item {
    margin-top: 4px;
    padding-left: 32px;
}

.tire-service {
    margin-bottom: 40px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}
@media (min-width: 980px) {
    .tire-service {
        display: flex;
        align-items: flex-start;
    }
}
@media (min-width: 980px) {
    .tire-service__content {
        flex-grow: 1;
        padding-right: 20px;
    }
}
.tire-service__section {
    padding-bottom: 40px;
}
.tire-service__section:not(:first-child) {
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}
.tire-service__section.not-padding{
    padding: 0px;
}
.tire-service__section.not-padding .tire-service__car-col{
    padding: 24px 0 30px;
}
.tire-service__header {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
}
.tire-service__title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}
@media (min-width: 768px) {
    .tire-service__center {
        display: flex;
    }
}
@media (min-width: 480px) {
    .tire-service__data {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 20px;
    }
}
@media (max-width: 979.98px) {
    .tire-service__data {
        margin-bottom: 32px;
    }
}
@media (min-width: 768px) {
    .tire-service__data {
        display: block;
        padding-right: 20px;
    }
}
@media (min-width: 980px) {
    .tire-service__data {
        width: 320px;
        padding-right: 60px;
    }
}
@media (max-width: 767.98px) {
    .tire-service__data-section:first-child {
        grid-column: 1/-1;
    }
}
.tire-service__data-section + .tire-service__data-section {
    margin-top: 32px;
}
.tire-service__times {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
@media (max-width: 767.98px) {
    .tire-service__times {
        grid-template-columns: repeat(3, 1fr);
    }
}
.tire-service__times-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.tire-service__times-label {
    display: block;
    padding: 1px 12px;
    text-align: center;
    color: #5a5a5a;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    cursor: pointer;
}
.tire-service__times-label:hover, .tire-service__times-label:focus-visible {
    color: #e12429;
    border-color: #e12429;
}
.tire-service__times-input:checked + .tire-service__times-label {
    color: #e12429;
    border-color: #e12429;
}
.tire-service__times-input:disabled + .tire-service__times-label {
    background-color: #e8e8e8;
    pointer-events: none;
}
@media (min-width: 980px) {
    .tire-service__address {
        flex-grow: 1;
    }
}
.tire-service__label {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-weight: 500;
}
.tire-service__label--required::after {
    content: "*";
    margin-left: 4px;
    color: #e12429;
}
.tire-service__label-icon {
    margin-right: 4px;
}
.tire-service__city {
    display: flex;
    align-items: center;
    margin-left: 12px;
    color: #e12429;
}
.tire-service__map {
    position: relative;
}
@media (max-width: 979.98px) {
    .tire-service__map-container {
        height: 320px;
    }
}
@media (min-width: 980px) {
    .tire-service__map-container {
        height: 440px;
    }
}
.tire-service__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}
.tire-service__tags-item {
    padding: 1px 12px;
    color: #5a5a5a;
    background-color: #f7f7f7;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
}
.tire-service__contacts {
    margin-top: 16px;
}
@media (min-width: 980px) {
    .tire-service__contacts {
        display: flex;
    }
}
.tire-service__contacts-item {
    display: flex;
    align-items: center;
    font-weight: 500;
}
@media (max-width: 979.98px) {
    .tire-service__contacts-item + .tire-service__contacts-item {
        margin-top: 8px;
    }
}
@media (min-width: 980px) {
    .tire-service__contacts-item + .tire-service__contacts-item {
        margin-left: 32px;
    }
}
.tire-service__contacts-icon {
    flex-shrink: 0;
    margin-right: 8px;
}
.tire-service__route {
    position: absolute;
    z-index: 1;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: none;
    max-width: 280px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 4px 35px rgba(0, 0, 0, 0.17);
}
.tire-service__route--visible {
    display: block;
}
@media (min-width: 980px) {
    .tire-service__route {
        right: 40px;
        bottom: 40px;
        left: 40px;
    }
}
.tire-service__route-close {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #e12429;
}
.tire-service__route-header {
    display: flex;
    padding: 16px;
    border-bottom: 1px solid #d8d7d7;
}
.tire-service__route-header-icon {
    flex-shrink: 0;
    margin-right: 8px;
    color: #e12429;
}
.tire-service__route-title {
    margin-bottom: 8px;
    font-weight: 500;
}
.tire-service__route-actions {
    display: flex;
    flex-direction: column;
    grid-row-gap: 16px;
    padding: 15px;
}
.tire-service__route-btn {
    display: flex;
    align-items: center;
    grid-column-gap: 8px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #d8d7d7;
}
.tire-service__route-btn:hover, .tire-service__route-btn:focus-visible {
    color: #e12429;
    border-color: #e12429;
}
.tire-service__route-toggle {
    display: flex;
    align-items: center;
    margin-top: 16px;
    padding: 9px 12px;
    color: #e12429;
    border: 1px solid #e12429;
    border-radius: 2px;
}
.tire-service__route-toggle:hover, .tire-service__route-toggle:focus-visible {
    color: #fff;
    background-color: #e12429;
}
.tire-service__route-toggle-icon {
    margin-right: 8px;
}
.tire-service__car {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 16px;
}
@media (min-width: 768px) {
    .tire-service__car {
        gap: 30px;
    }
}
.tire-service__car-checkboxes {
    display: flex;
    align-items: center;
    column-gap: 24px;
    padding: 10px 0;
}
@media (min-width: 768px) {
    .tire-service__car-checkboxes {
        column-gap: 30px;
    }
}
.tire-service__services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 768px) {
    .tire-service__services {
        grid-template-columns: repeat(3, 1fr);
    }
}
.tire-service__personal {
    display: grid;
    gap: 24px 30px;
}
@media (min-width: 768px) {
    .tire-service__personal {
        grid-template-columns: repeat(3, 1fr);
    }
}
.tire-service__summary {
    padding: 24px;
    background-color: #f7f7f7;
    border-radius: 2px;
}
@media (min-width: 980px) {
    .tire-service__summary {
        position: sticky;
        top: 92px;
        flex-shrink: 0;
        width: 240px;
        margin-top: 48px;
    }
}
.tire-service__summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.tire-service__summary-title {
    font-weight: 500;
}
.tire-service__summary-list {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    margin: 0 0 16px;
    padding-left: 13px;
}
.tire-service__summary-address {
    margin-top: 8px;
}
.tire-service__summary-divider {
    margin: 24px -24px 16px;
    border-bottom: 1px solid #e8e8e8;
}
.tire-service__summary-total {
    display: none;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
}
.tire-service__summary-cost {
    font-size: 23px;
    line-height: 29px;
}
.tire-service__summary-hint {
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 18px;
}

.qs-datepicker-container {
    position: relative;
    top: 0 !important;
}

.qs-controls {
    display: flex;
    align-items: center;
    color: #fff;
    background-color: #e12429;
}

.qs-arrow {
    order: 1;
    width: 35px;
    height: 45px;
    background: url("data:image/svg+xml,%0A%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.39136 3.40388L10.5279 7.54046C10.7818 7.7943 10.7818 8.20585 10.5279 8.45969L6.39136 12.5963C6.13752 12.8501 5.72596 12.8501 5.47212 12.5963C5.21828 12.3424 5.21828 11.9309 5.47212 11.677L9.06831 8.08084V7.91931L5.47212 4.32312C5.21828 4.06928 5.21828 3.65772 5.47212 3.40388C5.72596 3.15004 6.13752 3.15004 6.39136 3.40388Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center;
    cursor: pointer;
    transition: transform 0.15s;
}

.qs-left {
    transform: scaleX(-1);
}

.qs-month-year {
    flex-grow: 1;
    padding-left: 20px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.qs-month {
    margin-right: 4px;
}

.qs-squares {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 4px;
    padding-bottom: 12px;
    background-color: #f7f7f7;
    border: 1px solid #e8e8e8;
}

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

.qs-day {
    margin-bottom: 10px;
    padding: 5px 0;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    border-bottom: 1px solid #e8e8e8;
}

.qs-num {
    width: 27px;
    height: 27px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 27px;
    color: #5a5a5a;
    border: 1px solid #f7f7f7;
    border-radius: 2px;
    cursor: pointer;
}
.qs-num:hover {
    border-color: #e12429;
}

.qs-disabled {
    color: #a1a1a1;
    pointer-events: none;
}

.qs-active {
    color: #e12429;
    border-color: #e12429;
}

.qs-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.9);
}

.qs-overlay-year {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.qs-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    font-size: 23px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.qs-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.qs-overlay-month-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 8px;
    padding: 30px;
}
@media (min-width: 980px) {
    .qs-overlay-month-container {
        padding: 40px;
    }
}

.qs-overlay-month {
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}
.qs-overlay-month:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.qs-submit {
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
}
.qs-submit.qs-disabled {
    opacity: 0.6;
}
.qs-submit:not(.qs-disabled) {
    background-color: #e12429;
    cursor: pointer;
}
.qs-submit:not(.qs-disabled):hover {
    background-color: #cb1c20;
}

.qs-hidden {
    display: none;
}

.container {
    width: 100%;
    max-width: 1330px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

.header {
    position: relative;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
}
.header--catalog-visible {
    z-index: 30;
}
.header__top {
    font-size: 12px;
    line-height: 18px;
    border-bottom: 1px solid #e8e8e8;
}
@media (max-width: 979.98px) {
    .header__top {
        display: none;
    }
}
.header__top-row {
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.header__top-btn {
    display: flex;
    align-items: center;
}
.header__top-btn:hover, .header__top-btn:focus-visible {
    color: #e12429;
}
.header__top-btn:disabled {
    pointer-events: none;
}
.header__top-btn--accent {
    font-weight: 500;
}
.header__top-icon {
    margin-right: 8px;
}
.header__top-counter {
    margin-left: 8px;
    margin-right: 8px;
}
.header__top-callback {
    margin: 0 64px 0 16px;
    color: #a1a1a1;
}
.header__top-callback:hover, .header__top-callback:focus-visible {
    color: #e12429;
}
.header__top-user {
    margin: 0 24px 0 auto;
}
.header__main {
    background-color: #fff;
}
.header__main--sticky {
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.14);
}
.header__main-row {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
@media (min-width: 980px) {
    .header__main-row {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}
.header__logo:hover, .header__logo:focus-visible {
    opacity: 0.7;
}
@media (max-width: 979.98px) {
    .header__catalog-btn {
        order: -1;
        margin-right: 16px;
        font-size: 0;
        color: #e12429;
    }
}
@media (min-width: 980px) {
    .header__catalog-btn {
        display: flex;
        align-items: center;
        margin: 0 24px 0 32px;
        padding: 7px 16px;
        font-weight: 500;
        background-color: #f7f7f7;
        border: 1px solid #f7f7f7;
        border-radius: 2px;
    }
    .header__catalog-btn:hover, .header__catalog-btn:focus-visible {
        background-color: #ededed;
        border-color: #ededed;
    }
    .header__catalog-btn:active {
        transform: scale(0.96);
    }
    .header__catalog-btn--active {
        color: #e12429;
        background-color: #fff;
        border-color: #e12429;
    }
    .header__catalog-btn--active:hover, .header__catalog-btn--active:focus-visible {
        color: #fff;
        background-color: #e12429;
        border-color: #e12429;
    }
}
.header__catalog-btn-icon--close {
    display: none;
}
@media (min-width: 980px) {
    .header__catalog-btn-icon {
        margin-right: 8px;
    }
}
.header__search {
    position: relative;
    display: flex;
    flex-grow: 1;
}
@media (max-width: 979.98px) {
    .header__search {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        padding: 20px;
        background-color: #fff;
        border-top: 1px solid #e8e8e8;
    }
    .header__search--visible {
        display: flex;
    }
}
.header__search-btn {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    padding: 0;
}
.header__cart {
    display: flex;
    align-items: center;
    margin-left: 24px;
}
@media (max-width: 979.98px) {
    .header__cart {
        display: none;
    }
}
.header__cart-icon {
    position: relative;
    margin-right: 12px;
    color: #a1a1a1;
}
.header__cart-counter {
    position: absolute;
    top: -4px;
    right: -4px;
}
.header__cart-title {
    font-weight: 500;
}
.header__cart:hover .header__cart-title, .header__cart:focus-visible .header__cart-title {
    text-decoration: underline;
}
.header__cart--not-empty {
    color: #e12429;
}
.header__cart-hint {
    font-size: 12px;
    line-height: 18px;
    color: #a1a1a1;
}
.header__mobile {
    display: flex;
    margin-left: auto;
    padding-left: 16px;
}
@media (min-width: 980px) {
    .header__mobile {
        display: none;
    }
}
.header__mobile-btn {
    position: relative;
}
.header__mobile-btn--active {
    color: #e12429;
}
.header__mobile-btn + .header__mobile-btn {
    margin-left: 8px;
}
.header__mobile-counter {
    position: absolute;
    top: -4px;
    right: -4px;
}
.header__callback {
    position: absolute;
    z-index: 10;
    display: none;
    width: 300px;
    padding: 20px 15px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 4px 35px rgba(0, 0, 0, 0.25);
}
.header__callback--visible {
    display: block;
}
@media (max-width: 979.98px) {
    .header__callback {
        top: 100%;
        right: 20px;
    }
}
@media (min-width: 980px) {
    .header__callback {
        top: 0;
    }
}
.header__callback-online {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 500;
}
.header__callback-online::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 8px;
    background-color: #e12429;
    border-radius: 3px;
    animation: blink 1s linear infinite;
}
@keyframes blink {
    50% {
        opacity: 0;
    }
}
.header__callback-num {
    display: block;
    margin-bottom: 4px;
    font-size: 23px;
    line-height: 29px;
    font-weight: 700;
    color: #e12429;
}
.header__callback-text {
    font-size: 12px;
    line-height: 18px;
}
.header__callback-title {
    margin-bottom: 8px;
    font-weight: 500;
}
.header__callback-divider {
    margin: 20px -15px;
    border-bottom: 1px solid #d8d7d7;
}
.header__callback-form {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    margin-top: 15px;
}
.header__catalog {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    background-color: #fff;
}
.header__catalog--visible {
    display: block;
}
@media (min-width: 768px) {
    .header__catalog {
        padding: 48px 0;
        border-top: 1px solid #e8e8e8;
    }
}
@media (min-width: 980px) {
    .header__catalog {
        padding-bottom: 72px;
    }
}
.header__catalog-container {
    position: relative;
}
.header__catalog-close {
    position: absolute;
    top: -30px;
    right: 20px;
    color: #000;
}
.header__catalog-close:hover, .header__catalog-close:focus-visible {
    color: #e12429;
    background: 0;
}
@media (max-width: 767.98px) {
    .header__catalog-close {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .header__catalog-row {
        margin: 0 -20px;
    }
}
@media (min-width: 768px) {
    .header__catalog-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 48px 40px;
    }
}
@media (min-width: 980px) {
    .header__catalog-row {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1200px) {
    .header__catalog-row {
        grid-template-columns: repeat(6, 1fr);
    }
}
@media (max-width: 767.98px) {
    .header__catalog-col {
        border-top: 1px solid #e8e8e8;
    }
}
.header__catalog-title {
    font-weight: 500;
}
@media (max-width: 767.98px) {
    .header__catalog-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 20px;
    }
}
.header__catalog-title-link {
    display: block;
    flex-grow: 1;
}
.header__catalog-title-link:hover, .header__catalog-title-link:focus-visible {
    color: #e12429;
}
.header__catalog-toggle {
    width: 50px;
    height: 50px;
    text-align: center;
}
.header__catalog-toggle--active {
    transform: rotate(90deg);
}
@media (min-width: 768px) {
    .header__catalog-toggle {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .header__catalog-list {
        display: none;
        padding: 0 20px 20px;
    }
}
@media (min-width: 768px) {
    .header__catalog-list {
        margin-top: 12px;
    }
}
.header__catalog-link {
    display: block;
}
.header__catalog-link:hover, .header__catalog-link:focus-visible {
    color: #e12429;
}
.header__catalog-link + .header__catalog-link {
    margin-top: 12px;
}
.header__nav {
    position: relative;
}
@media (max-width: 979.98px) {
    .header__nav {
        display: none;
    }
}
.header__nav-row {
    display: flex;
    justify-content: space-between;
}
.header__nav-link {
    padding-bottom: 16px;
    font-weight: 500;
}
.header__nav-link:hover, .header__nav-link:focus-visible, .header__nav-link--active {
    color: #e12429;
    border-bottom: 1px solid #e12429;
}
.header__nav-flyout {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 50%;
    display: none;
    margin-top: 1px;
    padding: 18px 40px;
    background-color: #fff;
    box-shadow: 0 4px 17px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}
.header__nav-dropdown:hover .header__nav-flyout, .header__nav-dropdown:focus-within .header__nav-flyout {
    display: flex;
}
.header__nav-col {
    display: flex;
    align-items: center;
    font-weight: 500;
    white-space: nowrap;
}
.header__nav-col:hover, .header__nav-col:focus-visible {
    color: #e12429;
}
.header__nav-col + .header__nav-col {
    margin-left: 50px;
}
.header__nav-media {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    margin-right: 16px;
    background-color: #f7f7f7;
    border-radius: 46px;
    transition: background-color 0.15s;
}
.header__nav-col:hover .header__nav-media, .header__nav-col:focus-visible .header__nav-media {
    background-color: #ededed;
}

.footer {
    margin-top: auto;
    background-color: #f7f7f7;
}
.footer__subscribe {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px 40px;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}
@media (min-width: 768px) {
    .footer__subscribe {
        grid-template-columns: repeat(2, minmax(auto, 480px));
        padding: 40px 0;
    }
}
.footer__subscribe-title {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}
.footer__subscribe-text {
    font-weight: 500;
}
.footer__subscribe-form {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 16px;
}
@media (min-width: 768px) {
    .footer__subscribe-form {
        grid-template-columns: auto auto;
    }
}
@media (min-width: 768px) {
    .footer__subscribe-wide {
        grid-column: span 2;
    }
}
.footer__main {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 30px 15px;
    padding: 30px 0;
    border: solid #e8e8e8;
    border-width: 1px 0;
}
@media (min-width: 480px) {
    .footer__main {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 980px) {
    .footer__main {
        grid-template-columns: repeat(5, auto);
        padding: 40px 0;
    }
}
.footer__main-title {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}
.footer__main-link {
    display: block;
    color: #5a5a5a;
}
.footer__main-link:hover, .footer__main-link:focus-visible {
    color: #e12429;
}
.footer__main-link + .footer__main-link {
    margin-top: 8px;
}
@media (max-width: 374.98px) {
    .footer__main-link {
        font-size: 12px;
        line-height: 18px;
    }
}
.footer__main-payments {
    grid-column: span 2;
}
@media (min-width: 980px) {
    .footer__main-payments {
        grid-column: auto;
        justify-self: end;
    }
}
.footer__contacts {
    margin-bottom: 30px;
}
@media (max-width: 374.98px) {
    .footer__contacts {
        font-size: 12px;
        line-height: 18px;
    }
}
.footer__contacts-item {
    display: flex;
    align-items: center;
}
.footer__contacts-item:hover, .footer__contacts-item:focus-visible {
    color: #e12429;
}
.footer__contacts-item + .footer__contacts-item {
    margin-top: 8px;
}
.footer__contacts-icon {
    margin-right: 8px;
}
.footer__social {
    display: flex;
}
.footer__social-item {
    text-decoration: underline;
}
.footer__social-item:hover, .footer__social-item:focus-visible {
    color: #e12429;
}
.footer__social-item + .footer__social-item {
    margin-left: 12px;
}
.footer__copyright {
    padding: 30px 0;
    color: #a1a1a1;
}

.page {
    padding-top: 24px;
    padding-bottom: 40px;
}
@media (min-width: 980px) {
    .page {
        padding-bottom: 80px;
    }
}
.page__header {
    margin-bottom: 32px;
}
.page__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: #a1a1a1;
}
.page__breadcrumbs-item + .page__breadcrumbs-item::before {
    content: " - ";
}
.page__breadcrumbs-item:link:hover {
    color: #e12429;
}
.page__title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    grid-row-gap: 8px;
    margin-top: 16px;
}
.page__title-text {
    margin: 0;
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
}
@media (min-width: 768px) {
    .page__title-text {
        font-size: 30px;
        line-height: 36px;
    }
}
.page__grid {
    display: grid;
    grid-gap: 32px 20px;
    grid-template-columns: 1fr;
    align-items: start;
}
@media (min-width: 980px) {
    .page__grid {
        grid-template-columns: 1.5fr 4fr;
    }
}
@media (min-width: 1200px) {
    .page__grid {
        grid-template-columns: 1fr 4fr;
    }
}
.page__grid-row {
    grid-column: 1/-1;
}
.page__grid-col {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
}
.choice__actions-btn .disabled {
    pointer-events: none;
    cursor: default;
}
.choice__actions-btn.disabled {
    border-color: #d7d7d7;
    background-color: #d7d7d7;
}
.filter__collapse--alternative {
    padding-top: 0;
}

@media (max-width: 468px) {
    .add-to-cart {
        grid-template-columns: 1fr;
        grid-gap: 16px;
    }
}

/*# sourceMappingURL=main.css.map */
