

/* Start:/local/components/kombox/filter/templates/tires/style.css?17562158615105*/
.filter__form-btns {
    display: flex;
    justify-content: space-between;
    grid-area: buttons;
}

.filter__item_season,
.filter__item_main,
.filter__item_size,
.filter__item_more,
.filter__item_mark {
    grid-column: 1 / 2;
}

.filter__item_different {
    position: relative;
    margin-top: 36px;
}

.filter__item_different:before {
    content: '';
    position: absolute;
    top: -15px;
    right: 0;
    left: 0;
    display: block;
    width: calc(100% - 2px);
    height: 13px;
    border-top: 1px #8E8E8E solid;
    border-right: 1px #8E8E8E solid;
    border-left: 1px #8E8E8E solid;
    border-radius: 10px 10px 0 0;
}

.filter__item_different:after {
    content: 'Задняя ось';
    position: absolute;
    top: -20px;
    right: 0;
    left: 0;
    display: block;
    margin: 0 auto;
    width: 80px;
    height: 13px;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    color: #8E8E8E;
    background: var(--main-light-gray-color);
}

.filter__item-btns {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 16px;
    font-size: 14px;
    line-height: 14px;
}

.filter__item-btn {
    position: relative;
    color: var(--main-blue-color);
    cursor: pointer;
}

.filter__item-btn:hover {
    color: var(--main-red-color);
}

.filter__item-btn_different {
    padding-left: 18px;
}

.filter__item-btn_different:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 6px;
    display: block;
    width: 11px;
    height: 2px;
    background: var(--main-blue-color);
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

.filter__item-btn_different:hover:before {
    background: var(--main-red-color);
}

.filter__item-btn_different:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 6px;
    display: block;
    width: 11px;
    height: 2px;
    background: var(--main-blue-color);
    transform: translate(-50%, -50%) rotate(-90deg);
    transition: transform .3s;
    border-radius: 2px;
}

.filter__item-btn_different:hover:after {
    background: var(--main-red-color);
}

.filter__item-btn_different.open:after {
    transform: translate(-50%, -50%);
}

.filter__item-btn_more {
    padding-right: 20px;
}

.filter__item-btn_more:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -4px;
    display: block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.6001 9.61527L6.47601 8.79999L11.6001 13.6102L16.7242 8.79999L17.6001 9.61527L11.6001 15.2L5.6001 9.61527Z' fill='%230066CC'/%3E%3C/svg%3E%0A") 50% 50% no-repeat;
    transform: translateY(-50%) rotate(0);
    transition: transform .3s;
}

.filter__item-btn_more:hover:after {
    color: var(--main-red-color);
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.6001 9.61527L6.47601 8.79999L11.6001 13.6102L16.7242 8.79999L17.6001 9.61527L11.6001 15.2L5.6001 9.61527Z' fill='%23E2001AFF'/%3E%3C/svg%3E%0A") 50% 50% no-repeat;
}

.filter__item-btn_more.open:after {
    transform: translateY(-50%) rotate(-180deg);
}

.filter__item_add {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.filter__checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 18px;
}

.filter__checkbox-wrapper label {
    cursor: pointer;
}

.filter__checkbox-wrapper .chbox-label {
    padding-left: 28px;
}

.filter__item_result {
    grid-column: -2 / -1;
    margin-bottom: 30px;
}

.body_home_page .filter__form-wrap#tire_form_by_auto .filter__item_result {
    margin-bottom: 0;
}

@media (max-width: 719px) {
    .filter__item-btn_different {
        padding-left: 0;
    }

    .filter__item-btn_more {
        padding-right: 0;
    }

    .filter__item-btn_different:before,
    .filter__item-btn_different:after,
    .filter__item-btn_more:after {
        opacity: 0;
    }
}

@media (max-width: 649px) {
    .filter__item-btns {
        font-size: 13px;
    }
}

@media (max-width: 639px) {
    .filter__car-tires .filter__btns,
    .filter__car-tires .filter__form-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .filter__item-btns {
        font-size: 14px;
    }

    .filter__item-btn_different {
        padding-left: 18px;
    }

    .filter__item-btn_more {
        padding-right: 20px;
    }

    .filter__item-btn_different:before,
    .filter__item-btn_different:after,
    .filter__item-btn_more:after {
        opacity: 1;
    }

    .filter__item_result {
        margin-bottom: 0;
    }
}

@media (max-width: 359px) {
    .filter__item-btns {
        font-size: 13px;
    }

    .filter__item-btn_different {
        padding-left: 0;
    }

    .filter__item-btn_more {
        padding-right: 0;
    }

    .filter__item-btn_different:before,
    .filter__item-btn_different:after,
    .filter__item-btn_more:after {
        opacity: 0;
    }
}
/* End */


/* Start:/local/source/filter-product_2/css/style.css?177452969012690*/
.filter__title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding-bottom: 24px;
    align-self: flex-start;
}

.filter__title span {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    line-height: 23px;
    font-weight: 500;
}

.filter__help {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter__help:before {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    border-radius: 50%;
    border: 1px solid var(--main-blue-color);
}

.filter__season-item .filter__help:before {
    left: calc(50% + 8px);
}

.filter__help:hover:before {
    border: 1px solid var(--main-red-color);
}

.filter__help svg {
    display: block;
    width: 16px;
    height: 10px;
    fill: var(--main-blue-color);
    transform: translateZ(0);
}

.filter__season-item .filter__help svg {
    position: absolute;
    left: 0;
}

.filter__help:hover svg {
    fill: var(--main-red-color);
}

.filter__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.filter__label-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.filter__label {
    font-size: 14px;
    line-height: 14px;
}

.filter__controls {
    position: relative;
    display: none;
    z-index: 5;
}

.filter__controls-btn {
    position: relative;
    display: block;
    width: 100%;
    padding-right: 32px;
    font-size: 18px;
    line-height: 42px;
    color: #FFF;
    text-align: center;
    background-color: var(--main-blue-color);
    border-radius: 6px;
}

.filter__controls-btn.open {
    background-color: var(--hover-blue-color);
}

.filter__controls-btn:before {
    content: '';
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    margin-top: -12px;
    right: 8px;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.16788L5.16788 7L12 13.8905L18.8321 7L20 8.16788L12 16.1679L4 8.16788Z' fill='white'/%3E%3C/svg%3E%0A");
    transform: rotate(0);
    transition: transform .3s;
}

.filter__controls-btn.open:before {
    transform: rotate(-180deg);
    transition: transform .3s;
}

.filter__controls-wrap {
    position: relative;
}

.filter__sort-label {
    display: block;
    text-align: center;
    position: absolute;
    left: 8px;
    top: -8px;
    border-radius: 6px;
    font-size: 10px;
    line-height: 14px;
    color: #303030;
    background: #FFFFFF;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    width: 72px;
}

.filter__controls-symbol {
    width: 1px;
    height: 40px;
    background-color: #FFF;
}

.filter__sort-body {
    display: none;
    position: absolute;
    margin-top: -8px;
    z-index: -1;
    width: 100%;
    top: 100%;
    background-color: #FFF;
    padding: 24px 16px 8px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .25);
    border-radius: 6px;
}

.filter__sort-body > span {
    display: block;
    font-size: 14px;
    line-height: 16px;
    color: #000;
    padding-bottom: 8px;
    border-bottom: 1px solid #C4C4C4;
}

.filter__sort-body ul {
    margin-top: 8px;
}

.filter__sort-body ul a {
    display: block;
    font-size: 14px;
    line-height: 36px;
}

.filter__wrap {
    display: flex;
    flex-direction: column;
}

.filter__img {
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
}

.filter__img-content {
    font-size: 20px;
}

.filter__img-link {
    font-size: 16px;
    color: var(--main-blue-color);
}

.filter__img-link:hover {
    color: var(--main-red-color);
}

.filter__img-wrap {
    margin: 0 auto;
    width: 260px;
    height: 100%;
    min-height: 140px;
    max-height: 250px;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.filter__truck-tires .filter__img-wrap {
    background-image: url(/local/source/filter-product_2/css/../img/truck-tire.webp)
}

.filter__industrial-tires .filter__img-wrap {
    background-image: url(/local/source/filter-product_2/css/../img/industrial-tire.webp)
}

.filter__agricultural-tires .filter__img-wrap {
    background-image: url(/local/source/filter-product_2/css/../img/agricultural-tire.webp)
}

.filter__truck-wheels .filter__img-wrap {
    background-image: url(/local/source/filter-product_2/css/../img/truck-wheel.webp)
}

.filter__agricultural-wheels .filter__img-wrap,
.filter__industrial-wheels .filter__img-wrap {
    background-image: url(/local/source/filter-product_2/css/../img/agricultural-wheel.webp)
}

.filter__car-tires .filter__img-wrap {
    background-image: url(/local/source/filter-product_2/css/../img/car-tire.webp)
}

.filter__car-wheels .filter__img-wrap {
    background-image: url(/local/source/filter-product_2/css/../img/car-wheel.webp)
}

.filter__form {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 24px;
}

.filter__form-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: end;
}

.filter__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.filter__items {
    display: flex;
    gap: 24px;
}

.filter__item_mark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.filter__item_mark div:first-of-type {
    grid-column: span 2;
}

.filter__item_modif {
    display: flex;
    gap: 24px;
}

.filter__item > .checkbox-wrapper .chbox-label {
    display: block;
    padding: 0 0 0 28px;
    font-size: 20px;
    line-height: 48px;
    font-weight: 500;
}

.filter__item.multichoose {
    position: static;
}

.filter__item.multichoose .multichoose-body {
    left: 0;
    right: 0;
    top: auto;
    margin: 10px auto 0;
    width: 842px;
}

.filter__item.multichoose .multichoose-body__main ul {
    columns: 4;
}

.filter-total__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.filter-total__value {
    display: inline;
    font-size: 22px;
    line-height: 26px;
}

.filter-total__value h1 {
    display: inline;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    padding: 0;
    margin: 0;
}

.filter-total__value h1:after {
    content: ':';
}

.filter-total__sort {
    display: flex;
    align-items: baseline;
    position: relative
}

.filter-total__sort .select-style {
    width: 172px;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    padding: 0 40px 0 8px
}

.filter-total__sort > span {
    margin-right: 8px;
    font-size: 16px;
    line-height: 19px;
}

.filter__season {
    display: flex;
    gap: 24px;
}

.filter__season-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.filter__season-item .chbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: inherit;
    padding-left: 20px;
    height: 48px;
}

.filter__season-svg {
    width: 32px;
    height: 32px;
}

.filter__season-item .select-style {
    background: #FFF;
    padding: 0;
    border: none;
    box-shadow: inset 0 0 0 1px #DADADA;
}

.filter__season .checkbox-wrapper {
    display: block;
    padding: 0 12px;
}

.filter__on-main .filter__schema {
    display: flex;
    align-items: end;
    justify-content: center;
    height: 70px;
}

.filter__on-main .filter__schema img {
    max-width: 314px;
    width: 100%;
    object-fit: cover
}

.filter__on-main .filter__content {
    position: relative
}

.filter__item_type,
.filter__item_pcd,
.filter__item_width,
.filter__item_et,
.filter__item_truck {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.filter__item_size {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 24px;
}

.filter__item_truck {
    grid-column: 1 / -1;
}

.filter__items .filter__item:nth-of-type(2) {
    position: relative
}

.filter__items .filter__item:nth-of-type(2):after,
.filter__items .filter__item:nth-of-type(2):before {
    display: block;
    position: absolute;
    bottom: 0;
    width: 20px;
    font-size: 20px;
    line-height: 48px;
    font-weight: 500;
    text-align: center
}

.filter__items .filter__item:nth-of-type(2):before {
    content: '/';
    left: 0;
    margin-left: -22px
}

.filter__items .filter__item:nth-of-type(2):after {
    content: 'R';
    right: 0;
    margin-right: -22px
}

.brand__banner-form {
    flex-shrink: 0;
}

.brand__banner-form .filter__items {
    grid-column: 1 / -1;
}

.brand__banner-form .filter__label {
    color: #FFF;
}

.brand__banner-form .filter__items .filter__item:nth-of-type(2):after,
.brand__banner-form .filter__items .filter__item:nth-of-type(2):before {
    color: #FFF;
}

.filter__counter-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: end;
    align-items: center;
    column-gap: 4px;
}

.filter__counter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 18px;
    width: 18px;
    font-size: 14px;
    font-weight: 700;
    line-height: 15px;
    color: #FFF;
    border-radius: 50%;
    background: var(--main-red-color);
}

.brand__banner-form .filter__item_result {
    grid-column: 1 / -1;
}

@media (max-width: 1199px) {
    .filter__content {
        grid-template-columns: 1fr;
    }

    .filter__form-wrap {
        gap: 20px 24px;
    }

    .filter__img {
        display: none;
    }

    .filter__form {
        grid-column: auto;
        display: flex;
        flex-direction: column;
        justify-content: end;
        gap: 24px;
    }

    .filter__item > .checkbox-wrapper .chbox-label {
        font-size: 16px;
    }

    .filter__season .checkbox-wrapper {
        padding: 0 8px;
    }
}

@media (max-width: 959px) {
    .filter__item.multichoose .multichoose-body {
        width: 728px;
    }

    .filter-total__wrap {
        padding: 8px 0 20px 0;
    }
}

@media (max-width: 767px) {
    .filter .container-block {
        width: 100%;
    }

    .filter__form-wrap {
        gap: 16px 24px;
    }

    .filter__title {
        padding-bottom: 16px;
    }

    .filter__title span {
        font-size: 18px;
        line-height: 21px;
    }

    .filter__item.multichoose .multichoose-body {
        width: auto;
    }

    .filter__item.multichoose .multichoose-body__main ul {
        columns: 3;
    }

    .filter__img-content {
        font-size: 18px;
        line-height: 21px;
    }

    .filter-total .container-block {
        width: 100%;
    }

    .filter-total__wrap {
        padding: 8px 0 14px 0;
    }
}

@media (max-width: 639px) {
    .filter__controls + .filter__wrap {
        visibility: hidden;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all .3s ease-in-out;
    }

    .filter__controls + .filter__wrap.show {
        visibility: visible;
        max-height: 1000px;
        opacity: 1;
    }

    .filter__controls {
        display: grid;
        grid-template-columns: 2fr 3fr;
        gap: 16px;
    }

    .filter__controls + .filter__wrap .filter__title {
        margin-top: 16px;
    }

    .filter__controls-wrap .select-style {
        line-height: 40px;
    }

    .filter__img-link {
        font-size: 16px;
    }

    .filter__item > .checkbox-wrapper .chbox-label {
        line-height: 20px;
    }

    .filter-total__wrap {
        padding: 8px 0;
    }

    .filter-total__value {
        font-size: 18px;
        line-height: 22px;
    }

    .filter-total__sort {
        display: none;
    }

    .filter__on-main .filter__schema {
        display: none
    }

    .filter__btns {
        grid-template-columns: 1fr;
    }

    .filter__form {
        gap: 16px;
    }

    .filter__form-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .filter__item_mark {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .filter__item_mark div:first-of-type {
        grid-column: 1;
    }

    .filter__item_modif {
        flex-direction: column;
        gap: 16px;
    }

    .filter__item_size,
    .filter__item_type,
    .filter__item_pcd,
    .filter__item_width,
    .filter__item_et,
    .filter__item_truck {
        gap: 16px;
    }

    .filter__item_truck {
        grid-template-columns: 2fr 3fr;
    }

    .filter__item.multichoose .multichoose-body__main ul {
        columns: 2;
    }
}

@media (max-width: 359px) {
    .filter__label {
        font-size: 12px;
    }
}
/* End */


/* Start:/local/components/dev.autoset/com.change.auto/templates/form_change_auto/style.css?17557590781104*/
.select-style:disabled {
    opacity: 0.5;
}

.select-style:disabled:hover {
    cursor: default;
}

.no-valid {
    border: 1px solid red !important;
}

/*Preloader for mex disabled element*/
.filter__form-item-wrap {
    position: relative;
}

.filter__form-item.form-preloader .preloader-dots {
    display: flex;
}

.filter__form-item.form-preloader .preloader-dots + * .select-style {
    color: transparent;
}

.preloader-dots {
    display: none;
    position: absolute;
    align-items: center;
    padding: 0 8px;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
}

.preloader-dots .dot {
    border-radius: 50%;
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #878787;
    animation: dots-move 1s linear infinite;
    transform: scale(0.4);
}

.preloader-dots .dot + .dot {
    margin-left: 2px;
}

.preloader-dots .dot:nth-child(2) {
    animation-delay: .2s;
}

.preloader-dots .dot:nth-child(3) {
    animation-delay: .3s;
}

@keyframes dots-move {
    0%, 60%, 100% {
        transform: scale(0.4);
    }
    30% {
        transform: scale(1);
    }
}
/* End */


/* Start:/bitrix/components/dev.autoset/banner.home/templates/.default/style.css?1755759078572*/
.banner__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    user-select: none;
}

.banner__item {
    border-radius: 6px;
    overflow: hidden;
}

.banner__item-span {
    grid-column: span 2;
}

.banner__img {
    display: block;
    width: 100%;
}

@media (max-width: 1199px) {
    .banner__grid {
        gap: 20px 24px;
    }
}

@media (max-width: 767px) {
    .banner__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 24px;
    }
}

@media (max-width: 639px) {
    .banner__grid {
        gap: 16px;
    }
}
/* End */


/* Start:/bitrix/components/dev.autoset/main.marketing_all_page/templates/.default/style.css?17235374031103*/
.warranty__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: -4px -20px -20px -20px;
}

.warranty__item {
	width: 33.33%;
	padding: 20px;
	text-align: center;
}

.warranty__image svg {
	height: 80px;
	width: 80px;
	fill: var(--main-red-color);
	color: var(--main-red-color);
}

.warranty__content a {
	display: block;
	margin-top: 8px;
	font-weight: 600;
	font-size: 22px;
	line-height: 130%;
}

.warranty__content p {
	margin: 8px auto 0;
	max-width: 240px;
}

@media (max-width: 1199px) {
	.warranty__content a {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.warranty__item {
		width: 50%;
	}
}

@media (max-width: 639px) {
	.warranty__list {
		margin: 0 -16px -16px -16px;
	}

	.warranty__item {
		display: flex;
		align-items: center;
		width: 100%;
		padding: 16px;
		text-align: left;
	}

	.warranty__image svg {
		height: 60px;
		width: 60px;
	}

	.warranty__content {
		margin-left: 16px;
	}

	.warranty__content a {
		margin-top: 0;
		font-size: 22px;
	}

	.warranty__content p {
		margin: 8px 0 0;
		max-width: none;
	}

	.warranty br {
		display: none;
	}
}
/* End */


/* Start:/bitrix/components/dev.autoset/request.call.back/templates/.default/style.css?16662457944430*/
.consult-container * {
    box-sizing: border-box;
}

.container-block.consult-container {
    background-size: cover;
    color: #FFF;
    background-repeat: no-repeat;
    background-position: 40% 0;
    text-shadow: rgb(0 0 0 / 25%) 5px 5px 22px;
    background-image: url(/bitrix/templates/source/img/consultation.jpg);
}

.consult-container__inner {
    padding: 32px 0;
}

.consult-container .text_large,
.consult-container .text_medium,
.consult-container .text_strong,
.consult-container .consult-form__item label {
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

.consult-container .text_large,
.consult-container .text_medium,
.consult-container .text_strong {
    display: block;
    letter-spacing: 0.005em;
}

.consult-container .text_large,
.consult-container .text_strong {
    margin-bottom: 8px;
}

.consult-container .text_large,
.consult-container .text_medium {
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
}

.consult-container .text_medium .br {
    display: none;
}

.consult-container .text_strong {
    font-size: 54px;
    line-height: 63px;
    font-weight: 900;
}

.consult-container form {
    margin: 32px 0 0 0;
}

.consult-container .form__input {
    display: flex;
    align-items: flex-end;
}

.consult-container .consult-form__item {
    width: 284px;
    display: flex;
    flex-direction: column;
}

.consult-container .consult-form__item label {
    display: block;
    margin: 0 0 8px 0;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.015em;
}

.consult-container .consult-form__item + .consult-form__item {
    margin: 0 0 0 32px;
}

.input_decor, .input_decor:focus {
    vertical-align: middle;
    height: 54px;
    line-height: 54px;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .5);
    padding: 0 12px;
    color: inherit;
    font-size: 21px;
}

.input_decor:hover {
    border: 1px solid rgba(255, 255, 255, .5)
}

.input-delimetr {
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 0 10px
}

.consult-container .btn_style,
.consult-container .input_decor {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.consult-container .input_decor {
    margin: 0;
}

.consult-container .btn-style {
    line-height: 54px;
    font-size: 24px;
    letter-spacing: 0.0024em;
}

.consult-container .mask-decor {
    font-size: 30px;
    line-height: 60px
}

.response_message,
.response_message_error {
    padding: 16px;
    width: 284px;
    margin-top: 16px;
    text-align: center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.response_message {
    font-size: 24px;
    background-color: rgba(0, 128, 0, 0.45);
}

.response_message_error {
    font-size: 16px;
    background-color: rgba(187, 7, 7, 0.64);
}

@media (max-width: 767px) {
    .consult-container__inner {
        padding: 16px 0;
    }
}

@media (max-width: 639px) {
    .container-block.consult-container {
        background-position: 100% 50%;
        background-image: url(/bitrix/templates/source/img/consultation-mobile.jpg);
    }

    .consult-container .text_large,
    .consult-container .text_medium {
        font-size: 32px;
        line-height: 38px;
        font-weight: 700;
    }

    .consult-container__inner {
        padding: 0;
    }

    .consult-container .consult-form__item {
        width: 100%;
    }

    .consult-container .consult-form__item + .consult-form__item {
        margin: 0;
    }

    .consult-container .text_medium .br {
        display: block;
    }

    .consult-container .form__input {
        flex-direction: column;
        align-items: flex-start;
    }

    .consult-container .consult-form__item + .consult-form__item {
        margin: 16px 0 0 0;
    }

    .response_message,
    .response_message_error {
        width: 100%;
    }
}

@media (max-width: 359px) {
    .consult-container .text_medium {
        font-size: 28px;
    }
}

.consult-container .container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
/* End */


/* Start:/local/components/dev.autoset/com.masmi/templates/.default/style.css?17006339745366*/
.awards {
    display: grid;
    grid-template-columns: 378px 1fr;
    margin-top: 16px;
}

.awards__link {
    justify-self: center;
    margin-bottom: -71px;
    border-radius: 6px;
    border: 2px solid #E0E0E0;
    z-index: 10;
    overflow: hidden;
}

.awards__img {
    display: block;
}

.awards__bg {
    position: relative;
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 87px;
    background-color: #00A0E1;
}

.awards__bg:before,
.awards__bg:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32px;
    background-color: #00A0E1;
}

.awards__bg:before {
    left: -32px;
}

.awards__bg:after {
    right: -32px;
}

.fancybox {
    display: block;
    position: relative;
}

.fancybox:before {
    content: '';
    position: absolute;
    display: block;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border-radius: 4px;
}

.no-touch .fancybox:before {
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    visibility: hidden;
    background-size: 22px 22px;
    background-color: rgba(48, 48, 48, 0.8);
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='22' viewBox='0 0 21 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.1049 8.3864H9.13265V6.45458C9.13265 6.11148 8.85045 5.84094 8.51228 5.84094C8.17411 5.84094 7.89191 6.11148 7.89191 6.45458V8.3864H5.91969C5.58152 8.3864 5.29932 8.65693 5.29932 9.00003C5.29932 9.34314 5.58152 9.61367 5.91969 9.61367H7.89191V11.5455C7.89191 11.8886 8.17411 12.1591 8.51228 12.1591C8.85045 12.1591 9.13265 11.8886 9.13265 11.5455V9.61367H11.1049C11.443 9.61367 11.7252 9.34314 11.7252 9.00003C11.7252 8.65693 11.443 8.3864 11.1049 8.3864Z' fill='white' stroke='white' stroke-width='0.5'/%3E%3Cpath d='M19.6987 19.8334L19.6988 19.8336C19.938 20.0783 19.9303 20.4691 19.6814 20.7043L19.681 20.7046C19.5608 20.8178 19.4065 20.874 19.253 20.874C19.0926 20.874 18.9298 20.8128 18.8074 20.6873L19.6987 19.8334ZM19.6987 19.8334L14.3671 14.3895C15.7129 12.9794 16.5401 11.0833 16.5401 9.00001C16.5401 4.64673 12.9349 1.11365 8.51228 1.11365C4.08966 1.11365 0.484497 4.64673 0.484497 9.00001C0.484497 13.3533 4.08966 16.8864 8.51228 16.8864C10.3718 16.8864 12.0857 16.2613 13.448 15.2148L18.8069 20.6868L19.6987 19.8334ZM1.72524 9.00001C1.72524 5.33257 4.76563 2.34092 8.51228 2.34092C12.2589 2.34092 15.2993 5.33257 15.2993 9.00001C15.2993 12.6675 12.2589 15.6591 8.51228 15.6591C4.76563 15.6591 1.72524 12.6675 1.72524 9.00001Z' fill='white' stroke='white' stroke-width='0.5'/%3E%3C/svg%3E%0A");
    transform: translate(-50%, -50%);
    font-size: 12px;
    line-height: 40px;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0;
    z-index: 3;
}

.touch .fancybox:before {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 1.5V0H0.75C0.335766 0 0 0.335766 0 0.75V6H1.5V2.5575L8.4675 9.525L9.525 8.4675L2.5575 1.5H6Z' fill='white'/%3E%3Cpath d='M23.2501 0H18.0001V1.5H21.4426L14.4751 8.4675L15.5326 9.525L22.5001 2.5575V6H24.0001V0.75C24.0001 0.335766 23.6643 0 23.2501 0Z' fill='white'/%3E%3Cpath d='M22.5001 21.4426L15.5326 14.4751L14.4751 15.5326L21.4426 22.5001H18.0001V24.0001H23.2501C23.6643 24.0001 24.0001 23.6643 24.0001 23.2501V18.0001H22.5001V21.4426Z' fill='white'/%3E%3Cpath d='M8.4675 14.4673L1.5 21.4423V17.9998H0V23.2498C0 23.664 0.335766 23.9998 0.75 23.9998H6V22.4998H2.5575L9.525 15.5323L8.4675 14.4673Z' fill='white'/%3E%3C/svg%3E%0A");
    background-color: rgba(48, 48, 48, 0.6);
    z-index: 1;
}

.no-touch .fancybox:hover:before {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s;
}

@media (max-width: 1199px) {
    .awards {
        grid-template-columns: 238px 1fr;
    }

    .awards__bg:before,
    .awards__bg:after {
        width: 20px;
    }

    .awards__bg:before {
        left: -20px;
    }

    .awards__bg:after {
        right: -20px;
    }
}

@media (max-width: 959px) {
    .awards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .awards img {
        /*max-width: 264px;*/
        /*height: auto;*/
    }

    .awards__text {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .awards {
        margin-top: 24px;
    }

    .awards__bg:before,
    .awards__bg:after {
        width: 16px;
    }

    .awards__bg:before {
        left: -16px;
    }

    .awards__bg:after {
        right: -16px;
    }
}

@media (max-width: 639px) {
    .awards {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .awards__link {
        margin-top: 24px;
        margin-bottom: 0;
    }

    .awards__text {
        order: -1;
    }

    .awards__bg {
        margin-top: 40px;
        height: 46px;
    }

    .awards__bg:before,
    .awards__bg:after {
        width: 10px;
    }

    .awards__bg:before {
        left: -10px;
    }

    .awards__bg:after {
        right: -10px;
    }

    .awards__svg {
        height: 38px;
    }
}

@media (max-width: 359px) {
    .awards {
        margin-top: 16px;
    }

    .awards__link {
        margin-top: 16px;
    }

    .awards__bg {
        margin-top: 32px;
    }

}





/* End */


/* Start:/local/components/igor.autoset/reviews/templates/.default/style.css?16891785952494*/
.reviews {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.reviews__item {
    margin-top: 32px;
    flex-grow: 1;
}

.reviews__item:not(:first-of-type) {
    margin-left: 40px;
}

.reviews__title {
    padding-bottom: 8px;
    border-bottom: 1px solid #C4C4C4;
}

.reviews__title img {
    display: block;
    margin: 0 auto;
    width: 130px;
}

.reviews__google {
    width: 130px;
    height: 40px;
}

.reviews__yandex {
    width: 139px;
    height: 40px;
}

.reviews__values {
    display: flex;
    justify-content: space-evenly;
}

.reviews__main-value {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 24px;
    padding-left: 15px;
    width: 225px;
    height: 80px;
    border: 1px solid #C4C4C4;
    border-radius: 40px;
    background: white;
}

.reviews__description-value {
    margin-top: 12px;
    font-size: 16px;
    text-align: center;
}

.reviews__icon {
    width: 52px;
    height: 52px;
}

.reviews__numbers {
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.reviews__numbers span {
    font-size: 45px;
    line-height: 80px;
}

.reviews__numbers span:first-of-type {
    font-weight: 900;
}

@media (max-width: 1339px) {
}

@media (max-width: 1199px) {
    .reviews {
        flex-direction: column;
        align-items: stretch;
    }

    .reviews__item:not(:first-of-type) {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .reviews__item {
        margin-top: 24px;
    }
}

@media (max-width: 639px) {
    .reviews__title img {
        width: 104px;
    }

    .reviews__main-value {
        margin-top: 16px;
        padding-left: 10px;
        width: 138px;
        height: 50px;
        border-radius: 25px;
    }

    .reviews__icon {
        width: 32px;
        height: 32px;
    }

    .reviews__numbers {
        margin-left: 8px;
    }

    .reviews__numbers span {
        font-size: 28px;
        line-height: 33px;
    }

    .reviews__description-value {
        margin-top: 6px;
        font-size: 12px;
    }

    .reviews__add {
        margin-top: 16px;
    }
}

@media (max-width: 359px) {
    .reviews__item {
        margin-top: 16px;
    }

    .reviews__main-value {
        width: 124px;
        height: 44px;
        padding-left: 6px;
        border-radius: 22px;
    }

    .reviews__numbers span {
        font-size: 24px;
        line-height: 28px;
    }

    .reviews__description-value {
        font-size: 11px;
    }
}
/* End */


/* Start:/bitrix/templates/.default/components/bitrix/system.pagenavigation/.default/style.css?16288543551133*/
.nav-page-block{
  padding: 20px 0px;
  text-align: center;
  position: relative;
  background-color: #fff;
}
.nav-page-block .nav-page-block__link,
.nav-page-block span.nav-page-block__link-dots{
    font-size: 22px;
    font-weight: bold;
    color: #4c4c4c;
    display: inline-block;
    vertical-align: center;
    position: relative;
    margin-left: 20px;
}
.nav-page-block .nav-page-block__link svg{
    width: 15px;
    height: 15px;
    color: #4c4c4c;
}
.nav-page-block .nav-page-block__link svg:hover{
    color: #e2001a;
}
.nav-page-block .nav-page-block__link:hover{
  color: #e2001a;
  cursor: pointer;
}
.nav-page-block .nav-page-block__link + .nav-page-block__link{
      margin-left: 20px;
}
.nav-page-block span.nav-page-block__link-active{
  color: #e2001a;
}

.nav-page-block span.nav-page-block__link-dots{
    top: -5px;
}

@media (max-width: 991px) { 
  .nav-page-block .nav-page-block__link, .nav-page-block span.nav-page-block__link-dots {
      font-size: 20px;
  }
}
@media (max-width: 767px) {}
@media (max-width: 479px) {}
@media (max-width: 320px) {}



/* End */


/* Start:/bitrix/templates/autoset_2017/components/bitrix/news.list/main_news.company/style.css?17006454543511*/
.news-table,
.table {
    display: table;
    width: 100%;
}

.news-table__content,
.news-table__main,
.table-cell {
    display: table-cell;
}

.news-table {
    table-layout: fixed;
    margin-top: 32px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.news-table__main {
    vertical-align: top;
    width: 220px;
    padding-right: 20px;
    font-weight: 700;
}

.news-date__month {
    color: #4D4D4D;
    font-size: 16px;
}

.news-date__day {
    display: inline-block;
    margin-right: 5px;
    width: 50px;
    height: 26px;
    text-align: center;
    padding: 3px 0;
    color: #FFF;
    background: #4D4D4D;
}

.news-image img {
	display: block;
	max-width: 100%;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.news-table__content {
    vertical-align: top;
    font-size: 16px;
    line-height: 150%;
}

.table-content-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.table-content-desc {
    display: block;
    margin-top: 8px;
}

.news-table_holiday .news-date__month,
.news-table_holiday .table-content-title {
    color: #E2001A;
}

.news-table_holiday .news-date__day {
    background: #E2001A;
}

.no-touch .news-table_holiday:hover .news-date__day {
    background: #FF2C2C;
}

.no-touch .news-table_holiday:hover .news-date__month,
.no-touch .news-table_holiday:hover .table-content-title {
    color: #FF2C2C;
}

.news-table__link {
    display: inline-block;
    margin-top: 8px;
}

.news-table__link p {
    position: relative;
    display: inline-block;
    padding-right: 20px;
}

.news-table__link p:before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 14px;
    height: 12px;
    transform: translateY(-50%) rotate(180deg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.46967 5.46967C0.176777 5.76256 0.176777 6.23744 0.46967 6.53033L5.24264 11.3033C5.53553 11.5962 6.01041 11.5962 6.3033 11.3033C6.59619 11.0104 6.59619 10.5355 6.3033 10.2426L2.06066 6L6.3033 1.75736C6.59619 1.46447 6.59619 0.989593 6.3033 0.6967C6.01041 0.403806 5.53553 0.403806 5.24264 0.6967L0.46967 5.46967ZM13 5.25L1 5.25L1 6.75L13 6.75L13 5.25Z' fill='%231057B9'/%3E%3C/svg%3E%0A");
}

.news-table__link p:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.46967 5.46967C0.176777 5.76256 0.176777 6.23744 0.46967 6.53033L5.24264 11.3033C5.53553 11.5962 6.01041 11.5962 6.3033 11.3033C6.59619 11.0104 6.59619 10.5355 6.3033 10.2426L2.06066 6L6.3033 1.75736C6.59619 1.46447 6.59619 0.989593 6.3033 0.6967C6.01041 0.403806 5.53553 0.403806 5.24264 0.6967L0.46967 5.46967ZM13 5.25L1 5.25L1 6.75L13 6.75L13 5.25Z' fill='%23e2001a'/%3E%3C/svg%3E%0A");
}


@media (max-width: 639px) {
    .news-table {
        display: block;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .news-table__main {
        display: block;
        width: auto;
        padding-right: 0;
    }

    .news-image img {
        min-width: 100%;
    }

    .table-content-title {
        margin-top: 8px;
    }
}

@media (max-width: 359px) {
    .news-table__content {
        font-size: 14px;
        line-height: 140%;
    }
}
/* End */
/* /local/components/kombox/filter/templates/tires/style.css?17562158615105 */
/* /local/source/filter-product_2/css/style.css?177452969012690 */
/* /local/components/dev.autoset/com.change.auto/templates/form_change_auto/style.css?17557590781104 */
/* /bitrix/components/dev.autoset/banner.home/templates/.default/style.css?1755759078572 */
/* /bitrix/components/dev.autoset/main.marketing_all_page/templates/.default/style.css?17235374031103 */
/* /bitrix/components/dev.autoset/request.call.back/templates/.default/style.css?16662457944430 */
/* /local/components/dev.autoset/com.masmi/templates/.default/style.css?17006339745366 */
/* /local/components/igor.autoset/reviews/templates/.default/style.css?16891785952494 */
/* /bitrix/templates/.default/components/bitrix/system.pagenavigation/.default/style.css?16288543551133 */
/* /bitrix/templates/autoset_2017/components/bitrix/news.list/main_news.company/style.css?17006454543511 */
