* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: 0;
    box-sizing: border-box;
    border: 0;
}

/*FONTS*/
@font-face {
    font-family: 'Formular';
    src: url('../fonts/Formular-BlackItalic.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Formular';
    src: url('../fonts/Formular-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Formular';
    src: url('../fonts/Formular-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Formular';
    src: url('../fonts/Formular-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Formular';
    src: url('../fonts/Formular-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Formular';
    src: url('../fonts/Formular-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Formular';
    src: url('../fonts/Formular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Formular';
    src: url('../fonts/Formular-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Formular';
    src:url('../fonts/Formular-BoldItalic.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Formular';
    src: url('../fonts/Formular-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*MODIFICATOR*/
.red {
    color: #E31E24!important;
}
.green {
    background: #15A524!important;
    border-radius: 5px;
    color: #fff;
}
.grey {
    background: #BCBCBC!important;
}
.green-color {
    color: #15A524!important;
}
.black {
    color: #000!important;
}
.ta-c {
    text-align: center;
}
.flex {
    display: flex;
}
.flex_ai-c {
    display: flex;
    align-items: center;
}
.flex_ai-c_jc-sb {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex_ai-c_jc-c {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*BASE SCROLL*/
.base_scroll {
    padding: 0 11px 0 0;
    overflow-y: auto;
	overflow-x:hidden;
}
.base_scroll::-webkit-scrollbar-track  {
    background-color: #E3E9F2;
    border-radius: 4px;
}
.base_scroll::-webkit-scrollbar-track-piece{
    background-color: #E3E9F2;
    border-radius: 4px;
}
.base_scroll::-webkit-scrollbar-thumb {
    height: 50px;
    background: #E31E24;
    border-radius: 4px;
    width: 5px;
}
.base_scroll::-webkit-scrollbar-corner {
    background-color: #E3E9F2;
}
.base_scroll::-webkit-scrollbar {
    width: 5px;
    height: 3px;
    background: #E3E9F2;
    border-radius: 4px;
}

/*BASE DROPDOWN*/
.base_dropdown {
    position: relative;
    cursor: pointer;
}
.base_dropdown-head {
    font: 700 14px/14px 'Formular', sans-serif;
    color: #fff;
    display: flex;
    align-items: center;
    height: 40px;
    position: relative;
}
.base_dropdown-head:after {
    content: '';
    width: 18px;
    height: 18px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../svg/ic-arrow-down-black.svg) no-repeat center/cover;
}
.base_dropdown-head svg {
    margin: 0 0 0 5px;
}
.base_dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 40px;
    width: 100%;
    z-index: 1000;
    background: #fff;
    padding: 8px 5px 8px 11px;
    box-shadow: 0 0 50px rgba(2, 36, 86, 0.1);
}
.base_dropdown-content-inner {
    max-height: 210px;
}
.base_dropdown.active .base_dropdown-content {
    display: block;
}
.base_dropdown-link {
    padding: 0 20px;
    color: #566879;
    font: 400 14px/34px 'Formular', sans-serif;
    transition: background .2s linear;
}
.base_dropdown-link:hover {
    background: #F7F9FD;
    border-radius: 5px;
    color: #000;
}

/*BASE BUTTON*/
.base_btn {
    background: #E31E24;
    border: thin solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #FFFFFF;
    font: 700 16px/24px 'Formular', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
}
.base_reset {
    color: #566879;
    border-bottom: thin dashed #566879;
    font: 700 16px/24px 'Formular', sans-serif;
}

/*BASE TABS*/
.base_tab-content {
    display: none;
}
.base_tab-content.active {
    display: block;
}

/*HEADER*/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
}
.header_mob {
    display: none;
}
@media(max-width: 1023px) {
    .header_pc {
        display: none;
    }
    .header_mob {
        display: flex;
        border-bottom: thin solid rgba(255, 255, 255, 0.1);
    }
}
.header_row{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.header_row:after {
    content: '';
    border-bottom: thin solid rgba(255, 255, 255, 0.2);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.header_row:last-child:after {
    display: none;
}
.header_row-inner {
    width: 1326px;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header_city {
    margin: 0 37px 0 0;
    width: 161px;
    position: relative;
}
.header_city-head {
    padding: 0 0 5px;
    margin: 0 0 0 26px;
    position: relative;
    border-bottom: thin dashed rgba(255,255,255,0.3);
    width: fit-content;
    font: 700 14px/14px 'Formular', sans-serif;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header_city-head:before {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../svg/ic-pin-red.svg) no-repeat center/contain;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}
/* .header_city-head:after { */
    /* content: ''; */
    /* width: 18px; */
    /* height: 18px; */
    /* background: url(../svg/ic-arrow-down.svg) no-repeat center/contain; */
    /* position: absolute; */
    /* right: -30px; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
/* } */
.header_city.active .header_city-content {
    display: block;
}
.header_city-content {
    background: #fff;
    padding: 24px 40px;
    border-radius: 10px;
    width: 605px;
}
.header_city-content:before {
    content: '';
    position: absolute;
    left: 54px;
    top: -16px;
    border: 8px solid transparent;
    border-bottom: 8px solid #fff;
}
.header_city-content-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 24px;
    margin: 0 0 12px;
    border-bottom: thin solid #E2E9F2;
}
.header_city-content-title {
    color: #000;
    font: 700 22px/26px 'Formular', sans-serif;
}
.header_city-content-close {
    width: 37px;
}
.header_city-content-inner {
    display: flex;
    align-items: flex-start;
    margin: 0 0 18px;
    width: 605px;
}
.header_city-content-branches {
    background: #F5F8FC;
    border-radius: 5px;
    padding: 20px 28px;
    margin: 0 32px 0 0;
    width: 210px;
}
.header_city-content-branches-title {
    color: #000000;
    margin: 0 0 20px;
    font: 500 16px/20px 'Formular', sans-serif;
}
.header_city-content-delivery {
    padding: 20px 28px;
}
.header_city-content-branches-link {
    color: #566879;
    margin: 0 0 16px;
    padding: 0;
    cursor: pointer;
    font: 400 16px/20px 'Formular', sans-serif;
}
.header_city-content-branches-link.red {
    font-weight: 700;
    color: #E31E24;
}
.header_city-content-branches-link:hover {
    color: #000;
    transition: color .2s linear;
    background: transparent;
}
.header_city-content-delivery-inner {
    column-count: 2;
}
.header_city-content-delivery-link {
    color: #566879;
    margin: 0 0 16px;
    width: 130px;
    padding: 0;
    font: 400 16px/20px 'Formular', sans-serif;
    cursor: pointer;
}
.header_city-content-delivery-link:hover {
    color: #000;
    transition: color .2s linear;
    background: transparent;
}
.header_weather {
    display: flex;
    align-items: center;
    padding: 13px 11px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font: 500 14px/17px 'Formular', sans-serif;
    margin: 0 25px 0 0;
}
.header_weather-img {
    width: 26px;
    margin: 0 3px 0 0;
}
.header_recommend {
    display: flex;
    align-items: center;
    margin: 0 24px 0 0;
}
@media(max-width: 1340px) {
    .header_recommend {
        display: none;
    }
}
.header_recommend-link {
    font: 500 14px/17px 'Formular', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 25px 0 0;
    display: block;
    transition: color .2s linear;
    cursor: pointer;
}
.header_recommend-link:hover {
    color: #fff;
    transition: color .2s linear;
}
.header_phone {
    position: relative;
    color: #FFFFFF;
    display: block;
    margin: 0 10px 0 0;
    font: 700 18px/22px 'Formular', sans-serif;
    padding: 0 0 0 33px;
}
.header_phone:before {
    content: '';
    width: 28px;
    height: 28px;
    background: url(../svg/ic-phone.svg) no-repeat center/contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header_schedule {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font: 400 12px/17px 'Formular', sans-serif;
    margin: 0 15px 0 0;
}
.header_recall {
    padding: 13px 17px;
    background: #E31E24;
    border: thin solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    color: #fff;
    font: 700 14px/17px 'Formular', sans-serif;
    text-transform: uppercase;
    transition: all .2s linear;
}
.header_recall:hover {
    background: #fff;
    color: #000;
    transition: all .2s linear;
}
.header_recall:before {
    content: '';
    width: 26px;
    height: 26px;
    background: url(../svg/ic-call.svg) no-repeat center/contain;
    margin: 0 13px 0 0;
    transition: all .2s linear;
}
.header_recall:hover:before {
    transition: all .2s linear;
    background: url(../svg/ic-call-black.svg) no-repeat center/contain;
}
@media (max-width: 1340px) {
    .header_recall:before {
       display: none;
    }
}
.header_lang {
    display: flex;
    align-items: center;
    padding: 5px 32px 5px 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font: 700 12px/17px 'Formular', sans-serif;
}
.header_lang-head:after {
    right: -22px;
    background: url(../svg/ic-arrow-down.svg) no-repeat center/contain;
}
.header_lang-head:before {
    content: '';
    width: 21px;
    height: 14px;
    margin: 0 5px 0 0;
}
.lang-ru:before {
    background: url(../images/ic-ru-flag.jpg) no-repeat center/contain;
}
.lang-en:before {
    background: url(../images/ic-en-flag.jpg) no-repeat center/contain;
}
.lang-kz:before {
    background: url(../images/ic-kz-flag.jpg) no-repeat center/contain;
}
.header_lang-content {
    width: 100%;
    background: #F8FAFD;
    border-radius: 5px;
    top: 55px;
    padding: 0;
}
.header_lang-link {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    color: #000000;
    font: 700 12px/15px 'Formular', sans-serif;
    border-bottom: thin solid #EDEDED;
    cursor: pointer;
    text-transform: uppercase;
}
.header_lang-link:first-child {
    border-radius: 5px 5px 0 0;
}
.header_lang-link:last-child {
    border-radius: 0 0 5px 5px;
}
.header_lang-link.active,
.header_lang-link:hover {
    background: #EDEDED;
}
.header_lang-link:before {
    content: '';
    width: 21px;
    height: 14px;
    margin: 0 10px 0 0;
}
.header_logo {
    font: 400 12px/15px 'Formular', sans-serif;
    color: #fff;
    width: 290px;
    margin: 0 0px 0 0;
}
.header_logo-img {
    width: 209px;
    display: block;
}
@media(max-width: 1340px) {
    .header_logo {
        margin: 0 162px 0 0;
    }
}
.header_btn {
    display: flex;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font: 700 16px/18px 'Formular', sans-serif;
    padding: 13px 22px;
    margin: 0 15px 0 0;
    cursor: pointer;
}
.header_btn:before {
    content: '';
    width: 28px;
    height: 28px;
    margin: 0 14px 0 0;
    flex-shrink: 0;
}
.header_centers:before {
    background: url(../svg/ic-pin-white.svg) no-repeat center/contain;
}
.header_calculate:before {
    background: url(../svg/ic-calculate.svg) no-repeat center/contain;
}
.ic-wheels:before {
    background: url(../svg/ic-disk.svg) no-repeat center/contain;
}
@media(max-width: 1340px) {
    .header_btn {
        font-size: 0;
        padding: 11px 26px;
    }
    .header_btn:before {
        margin: 0 auto;
    }
}
.header_icons {
    cursor: pointer;
    border-left: thin solid rgba(255, 255, 255, 0.2);
    transition: background .2s linear;
    padding: 22px 17px;
}
.header_icons:hover {
    background: rgba(255, 255, 255, 0.2);
    transition: background .2s linear;
}
.header_icons-img {
    width: 36px;
    cursor: pointer;
}
.header_cart {
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 183px;
    padding: 21px 10px;
    border-right: thin solid rgba(255, 255, 255, 0.2);
    border-left: thin solid rgba(255, 255, 255, 0.2);
    transition: background .2s linear;
}
@media(max-width: 1340px) {
    .header_cart {
        width: 149px;
    }
}
.header_cart:hover {
    background: rgba(255, 255, 255, 0.2);
    transition: background .2s linear;
}
.header_cart-icon {
    position: relative;
    width: 36px;
    margin: 0 12px 0 0;
}
.header_cart-products {
    width: 20px;
    height: 20px;
    background: #E31E24;
    border-radius: 15px;
    font: 700 12px/14px 'Formular', sans-serif;
    text-align: center;
    padding: 2px 0;
    position: absolute;
    color: #fff;
    z-index: 10;
    right: -6px;
    top: -6px;
}
.header_cart-sum {
    display: block;
    font: 400 14px/17px 'Formular', sans-serif;
    color: rgba(255,255,255,0.5);
}
.header_cart-price {
    display: block;
    color: #fff;
    font: 700 16px/20px 'Formular', sans-serif;
}
.header_spikes {
    position: absolute;
    left: 0;
}
.header_spikes .header_category {
    z-index: 10;
    position: relative;
}
.header_sticky .header_row:last-child .header_row-inner{
    padding: 0 0 0 122px;
}
.header_category {
    display: flex;
    align-items: center;
    padding: 17px 16px;
    color: #FFFFFF;
    font: 700 18px/20px 'Formular', sans-serif;
    transition: all .2s linear;
    cursor: pointer;
    position: relative;
}
.header_category:hover,
.header_category.active {
    background: #fff;
    color: #566879;
    transition: all .2s linear;
}
.header_category:after {
    content: '';
    position: absolute;
    right: 0;
    height: 30px;
    border-right: thin solid rgba(255, 255, 255, 0.2);
}
.header_category:last-child:after {
    display: none;
}
.header_category-img {
    margin: 0 10px 0 0;
    fill: #fff;
    transition: all .2s linear;
}
.header_category:hover .header_category-img,
.header_category.active .header_category-img {
    fill: #566879;
    transition: all .2s linear;
}
.header_category:last-child {
    border-right: none;
}
@media(max-width: 1340px) {
    .header_category {
        font-size: 16px;
    }
    .header_category-img {
        display: none;
    }
    .header_row-inner {
        width: 973px;
    }
    .header_sticky .header_row:last-child .header_row-inner {
        padding: 0 0 0 83px;
    }
}

/*HEADER STICKY*/
.header.dark {
    background: #15151B;
    box-shadow: 0 4px 27px rgba(0,0,0,0.1);
}
.dark .header_sticky {
    background: #fff;
    box-shadow: 0 4px 27px rgba(0,0,0,0.1);
}
.header_sticky.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0px 20px 50px rgba(2, 36, 86, 0.05);
}
.header_sticky.sticky .header_centers:before,
.dark .header_centers:before{
    background: url(../svg/ic-pin-grey.svg) no-repeat center/contain;
}
.header_sticky.sticky .header_calculate:before,
.dark .header_calculate:before {
    background: url(../svg/ic-calc-grey.svg) no-repeat center/contain;
}
.header_sticky.sticky .ic-wheels:before, .dark .ic-wheels:before {
    background: url(../svg/ic-disk-grey.svg) no-repeat center/contain;
}
.header_sticky.sticky .header_btn,
.dark .header_btn,
.header_sticky.sticky .header_cart-price,
.dark .header_cart-price,
.header_sticky.sticky .header_category,
.dark .header_category {
    color: #566879;
}
.header_sticky.sticky .header_btn,
.dark .header_btn {
    background: rgba(211, 211, 211, 0.2);
}
.header_sticky.sticky .header_icons path,
.dark .header_icons path,
.header_sticky.sticky .header_cart-icon path,
.dark .header_cart-icon path,
.header_sticky.sticky .header_category path,
.dark .header_category path {
    fill: #566879;
}
.header_sticky.sticky .header_cart-sum,
.dark .header_cart-sum {
    color: rgba(86, 104, 121, 0.5);
}
.header_logo-sticky,
.dark .header_logo-img{
    display: none;
}
.header_sticky.sticky .header_logo-sticky,
.dark .header_logo-sticky {
    display: block;
    /* width: 250px; */
    width: 209px;
}
.header_sticky.sticky .header_logo span,
.header_sticky.sticky .header_logo-img {
    display: none;
}
.header_sticky.sticky .header_category:after,
.dark .header_category:after,
.header_sticky.sticky .header_cart,
.dark .header_cart{
    border-right: thin solid rgba(5, 5, 5, 0.1);
}
.header_sticky.sticky .header_row:after,
.dark .header_row:after {
    border-bottom: thin solid rgba(5, 5, 5, 0.1);
}
.header_sticky .header_row:nth-child(2):after {
    border-bottom: none;
}
.header_sticky.sticky .header_icons,
.dark .header_icons {
    border-left: thin solid rgba(5, 5, 5, 0.1);
}

/*HEADER MOB*/
.header_burger {
    padding: 12px 10px;
    width: 44px;
    border-right: thin solid rgba(255, 255, 255, 0.1);
}
.header_burger-top {
    display: block;
    width: 24px;
    height: 3.5px;
    background: linear-gradient(120deg, rgba(255,255,255,1) 33%, rgba(255,255,255,1) 48%, rgba(0,0,0,1) 48%, rgba(0,0,0,1) 66%, rgba(227,30,36,1) 66%);
}
.header_burger-line {
    display: block;
    width: 24px;
    margin: 5px auto;
    border-bottom: 3.5px solid #fff;
}
.header_burger-bottom {
    display: block;
    width: 24px;
    height: 3.5px;
    background: linear-gradient(120deg, rgba(255,255,255,1) 34%, rgba(0,0,0,1) 34%, rgba(0,0,0,1) 52%, rgba(255,255,255,1) 52%);
}
.header_location {
    width: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: thin solid rgba(255, 255, 255, 0.1);
}
.header_call {
    width: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: thin solid rgba(255, 255, 255, 0.1);
}
.header_mob-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 186px;
    margin: 0 auto;
    padding: 6px 18px;
}
.header_mob-logo-img {
    width: 100%;
}
.header_mob.sticky {
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    transition: all .2s linear;
    box-shadow: 0 4px 27px rgba(0, 0, 0, 0.1);
}
.sticky .header_burger {
    border-right: thin solid rgba(5, 5, 5, 0.1);
}
.sticky .header_burger-top {
    background: linear-gradient(120deg, #566879 33%, #566879 48%, #fff 48%, #fff 66%, rgba(227,30,36,1) 66%);
}
.sticky .header_burger-line {
    border-bottom: 3.5px solid #566879;
}
.sticky .header_burger-bottom {
    background: linear-gradient(120deg, #566879 34%, #fff 34%, rgba(0,0,0,1) 52%, #566879 52%);
}
.sticky .header_location path,
.sticky .header_call path {
    fill: #566879;
}
.sticky .header_location,
.sticky .header_call {
    border-left: thin solid rgba(5, 5, 5, 0.1);
}
.sticky .header_mob-logo-img {
    display: none;
}
.header_mob-logo-sticky {
    display: none;
}
.sticky .header_mob-logo-sticky {
    display: block;
    width: 100%;
}


/*FOOTER*/
footer {
    background: #1D1B26;
}
.footer_row {
    display: flex;
    justify-content: center;
}
.footer_contacts {
    background: #15151B;
    padding: 70px 48px;
    margin: 0 84px 0 0;
}
.footer_contacts-title {
    color: #fff;
    margin: 0 0 56px;
    font: 900 30px/37px 'Formular', sans-serif;
}
.footer_contacts-item {
    width: 100%;
    padding: 0 0 24px;
    margin: 0 auto 24px;
    border-bottom: thin solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}
.footer_contacts-address {
    border-bottom: 0;
    margin: 0 0 54px;
    padding: 0;
}
.footer_contacts-icon {
    width: 46px;
    height: 46px;
    margin: 0 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.footer_contacts-orange {
    background: #FA6A01;
    box-shadow: 0 4px 10px rgba(250, 106, 1, 0.5);
}
.footer_contacts-red {
    background: #E31E24;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.5);
}
.footer_contacts-blue {
    background: #1EB4E3;
    box-shadow: 0 4px 10px rgba(30, 180, 227, 0.5);
}
.footer_contacts-link {
    color: #fff;
    cursor: pointer;
    font: 700 18px/22px 'Formular', sans-serif;
}
.footer_contacts-link span {
    display: block;
    color: #ABA6C1;
    font: 400 12px/16px 'Formular', sans-serif;
    text-transform: uppercase;
    margin: 0 0 2px;
}
.footer_contacts-arrow {
    margin: 0 0 -2px;
}
.footer_contacts-btn {
    color: #FFFFFF;
    font: 700 16px/24px 'Formular', sans-serif;
    border-radius: 10px;
    border: thin solid rgba(255, 255, 255, 0.2);
    padding: 13px 20px;
    display: block;
    text-align: center;
    transition: all .2s linear;
    cursor: pointer;
}
.footer_contacts-btn:hover {
    background: #E31E24;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all .2s linear;
}
.footer_info {
    padding: 82px 0 54px;
}
.footer_info-nav {
    display: flex;
    align-items: flex-start;
    margin: 0 0 70px;
}
.footer_info-nav-item {
    margin: 0 70px 0 0;
}
.footer_info-nav-title {
    margin: 0 0 30px;
    color: #fff;
    font: 900 20px/24px 'Formular', sans-serif;
}
.footer_info-nav-link {
    display: block;
    color: #ABA6C1;
    font: 400 16px/20px 'Formular', sans-serif;
    margin: 0 0 10px;
    transition: color .2s linear;
    cursor: pointer;
}
.footer_info-nav-link:hover {
    color: #FA6A01;
    transition: color .2s linear;
}
.footer_info-contacts {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: #15151B;
    padding: 28px 34px;
    width: 805px;
}
.footer_info-contacts-form {
    width: 350px;
}
.footer_info-contacts-title {
    color: #FFFFFF;
    margin: 0 0 13px;
    font: 900 20px/24px 'Formular', sans-serif;
}
.footer_info-contacts-label {
    display: block;
    width: 100%;
    position: relative;
    cursor: pointer;
}
.footer_info-contacts-input {
    background: #312F3B;
    border-radius: 5px;
    padding: 12px 60px 12px 28px;
    color: #ABA6C1;
    font: 400 16px/26px 'Formular', sans-serif;
    width: 100%;
}
.footer_info-contacts-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E31E24;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.5);
    border-radius: 5px;
}
.footer_info-contacts-network .footer_info-contacts-title {
    text-align: right;
}
.footer_info-contacts-social {
    display: flex;
    align-items: center;
}
.footer_info-contacts-social-link {
    width: 30px;
    cursor: pointer;
    margin: 0 0 0 10px;
}
.footer_copyright {
    background: #15151B;
    border-top: thin solid rgba(255, 255, 255, 0.05);

}
.footer_copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1340px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    height: 70px;
}
.footer_copyright-txt {
    color: #FFFFFF;
    font: 400 14px/17px 'Formular', sans-serif;
}
.footer_copyright-up {
    background: #FA6A01;
    box-shadow: 0 4px 10px rgba(250, 106, 1, 0.5);
    border-radius: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}
@media (max-width: 1340px) {
    .footer_row {
        flex-direction: column;
        padding: 64px 64px 0;
    }
    .footer_contacts {
        width: 100%;
        margin: 0 auto 66px;
    }
    .footer_info-nav {
        justify-content: center;
        text-align: center;
    }
    .footer_info-nav-item:nth-child(1) {
        order: 2;
    }
    .footer_info-nav-item:nth-child(3) {
        order: 3;
    }
    .footer_info {
        padding: 0 0 65px;
    }
    .footer_info-contacts {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 32px;
    }
    .footer_info-contacts-form {
        width: 100%;
        max-width: 550px;
        margin: 0 auto 30px;
    }
    .footer_info-contacts-network .footer_info-contacts-title {
        text-align: center;
    }
    .footer_copyright-txt {
        width: auto;
        text-align: center;
    }
    .footer_copyright-up {
        display: none;
    }
}
@media(max-width: 768px) {
    .footer_row {
        padding: 0;
    }
    .footer_contacts {
        background: #1D1B26;
        padding: 27px 20px 0;
        margin: 0 0 60px;
    }
    .footer_contacts-title {
        text-align: center;
        font: 900 20px/24px 'Formular', sans-serif;
        margin: 0 0 20px;
    }
    .footer_contacts-item {
        padding: 0 0 15px;
        margin: 0 auto 15px;
    }
    .footer_contacts-link {
        font: 700 16px/20px 'Formular', sans-serif;
    }
    .footer_info-nav {
        flex-direction: column;
    }
    .footer_info-nav-item {
        margin: 0 auto 40px;
    }
    .footer_info-nav-item:nth-child(1) {
        order: 1;
    }
    .footer_info-nav-item:nth-child(2) {
        order: 2;
    }
    .footer_info-contacts {
        padding: 26px 20px;
    }
    .footer_info-contacts-social-link {
        width: 22px;
        height: 22px;
        margin: 0 6px;
    }
    .footer_info {
        padding: 0;
    }
    .footer_info-nav {
        margin: 0;
    }
}

/*NAV PANEL*/
.nav-panel {
    display: none;
}
@media(max-width: 768px) {
    .nav-panel {
        background: #fff;
        box-shadow: 0 4px 27px rgba(0, 0, 0, 0.1);
        padding: 3px 5px;
        display: flex;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
    }
    .nav-panel_link {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #566879;
        width: 24%;
        padding: 5px 0;
        font: 500 8px/8px 'Formular', sans-serif;
        position: relative;
    }
    .nav-panel_link svg {
        width: 24px;
        margin: 0 0 3px;
    }
    .nav-panel_link:focus,
    .nav-panel_link.active {
        color: #fff;
        background: #E31E24;
        border-radius: 5px;
    }
    .nav-panel_link:focus path,
    .nav-panel_link.active path {
        fill: #fff;
    }
    .nav-panel_link-cart {
        position: absolute;
        right: 15px;
        top: 5px;
        width: 17px;
        height: 12px;
        background: #E31E24;
        border-radius: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #FFFFFF;
        font: 700 10px/12px 'Formular', sans-serif;
    }
    .nav-panel_link:focus .nav-panel_link-cart,
    .nav-panel_link.active .nav-panel_link-cart {
        background: #fff;
        color: #E31E24;
    }
}

/*MODAL WINDOWS*/

.modal {
    position: fixed;
    z-index: 10001;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    display: flex;
}
.modal-is-open {
    overflow: hidden;
    height: 100%;
}
.modal_overlay {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s linear;
    background: rgba(0,0,0,0.5);
}
.modal_wrapper {
    margin: auto;
    z-index: 10;
    max-width: 1300px;
    width: 100%;
    position: relative;
    opacity: 0;
    transition: all 0.2s linear;
    padding: 78px 120px;
    background: #fff;
    transform: scale(0.7);
    border-radius: 10px;
    overflow: hidden;
}
@media(max-width: 991px) {
    .modal_wrapper {
        padding: 78px 58px;
    }
}
@media(max-width: 768px) {
    .modal_wrapper {
        padding: 58px 24px;
        text-align: center;
    }
}
.modal.is-visible {
    height: 100%;
    width: 100%;
}
.modal.is-visible .modal_overlay {
    opacity: 1;
    visibility: visible;
}
.modal.is-visible .modal_wrapper {
    transform: scale(1);
    opacity: 1;
}
.modal_close {
    position: absolute;
    top: 31px;
    right: 36px;
    width: 37px;
    height: 37px;
    cursor: pointer;
}
.modal_img {
    position: absolute;
    right: -150px;
    top: -130px;
    width: 100%;
    max-width: 968px;
    z-index: -1;
}
@media(max-width: 1200px) {
    .modal_img {
        right: -137px;
        top: -86px;
        max-width: 840px;
    }
}
@media(max-width: 991px) {
    .modal_img {
        right: -100px;
        top: 0;
        max-width: 640px;
    }
}
@media(max-width: 768px) {
    .modal_img {
        display: none;
    }
}
.modal_title {
    color: #000000;
    font: 700 40px/48px 'Formular', sans-serif;
    margin: 0 0 12px;
}
.modal_subtitle {
    color: #566879;
    margin: 0 0 35px;
    font: 400 18px/29px 'Formular', sans-serif;
}
.modal_label {
    display: block;
    width: 458px;
    margin: 0 0 18px;
    position: relative;
    cursor: pointer;
    color: #566879;
    font: 400 16px/26px 'Formular', sans-serif;
}
.modal_label-input {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 5px;
    padding: 16px 16px 16px 83px;
    color: #000000;
    font: 700 24px/38px 'Formular', sans-serif;
}
.modal_label-input::placeholder {
    color: #000000;
    font: 700 24px/38px 'Formular', sans-serif;
}
.modal_label-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 18px;
    width: 40px;
}
.modal_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 458px;
    height: 70px;
    background: #E31E24;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #FFFFFF;
    text-transform: uppercase;
    font: 900 18px/27px 'Formular', sans-serif;
    margin: 0 0 27px;
    cursor: pointer;
}
@media(max-width: 768px) {
    .modal_title {
        font: 700 26px/34px 'Formular', sans-serif;
    }
    .modal_subtitle {
        font: 400 14px/20px 'Formular', sans-serif;
    }
    .modal_subtitle br {
        display: none;
    }
    .modal_label {
        max-width: 400px;
        width: 100%;
        margin: 0 auto 12px;
        font-size: 14px;
        line-height: 22px;
    }
    .modal_label-input {
        padding: 10px 16px 10px 83px;
        font: 700 18px/26px 'Formular', sans-serif;
    }
    .modal_btn {
        max-width: 400px;
        width: 100%;
        margin: 0 auto 27px;
        height: 50px;
        letter-spacing: 1px;
        font: 700 16px/27px 'Formular', sans-serif;
    }
}
.modal_policy {
    color: #818181;
    font: 400 16px/22px 'Formular', sans-serif;
}
.modal_policy a {
    color: #000;
}
@media(max-width: 470px) {
    .modal_policy br {
        display: none;
    }
    .modal_subtitle br {
        display: none;
    }
}

/*MODAL LOGIN*/
.modal-login .modal_wrapper {
    max-width: 640px;
    width: 100%;
    padding: 47px 0;
}
.modal-login .modal_title {
    margin: 0 0 23px;
    text-align: center;
}
.modal-login .modal_subtitle {
    text-align: center;
    margin: -15px auto 32px;
    font: 400 18px/28px 'Formular', sans-serif;
}
.modal-login_form {
    padding: 0 120px;
}
.modal-login .modal_label {
    width: 100%;
    margin: 0 auto 11px;
    color: #566879;
    font: 400 16px/26px 'Formular', sans-serif;
}
.modal-login .modal_label-input {
    font: 400 20px/26px 'Formular', sans-serif;
    padding: 10px;
    background: #F8FAFD;
}
.modal-login_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px auto 37px;
}
.modal-login_checkbox {
    display: flex;
    align-items: center;
    color: #566879;
    font: 400 16px/22px 'Formular', sans-serif;
    position: relative;
}
.modal-login_checkbox-label {
    position: relative;
    padding: 0 0 0 34px;
}
.modal-login_checkbox-label:before {
    content: '';
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border: 1px solid #E2E9F2;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
}
.modal-login_checkbox input {
    opacity: 0;
    position: absolute;
}
.modal-login_checkbox input:checked + .modal-login_checkbox-label:before {
    border: 1px solid #15A524;
}
.modal-login_checkbox input:checked + .modal-login_checkbox-label:after {
    content: '';
    width: 12px;
    height: 10px;
    position: absolute;
    top: 6px;
    left: 5px;
    background: url(../svg/ic-check2.svg) no-repeat center/cover;
}
.modal-login_reset {
    font: 700 16px/22px 'Formular', sans-serif;
    cursor: pointer;
}
.modal-login .modal_policy {
    text-align: center;
    margin: 0 0 18px;
}
.modal-login_btn {
    width: 100%;
    padding: 13px 13px;
    background: #15A524;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(21, 165, 36, 0.5);
    border-radius: 5px;
    color: #FFFFFF;
    text-align: center;
    margin: 0 auto 34px;
    font: 700 16px/22px 'Formular', sans-serif;
    cursor: pointer;
}
.modal-login_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: thin solid #E2E9F2;
    padding: 37px 60px 0;
}
.modal-login_register {
    width: 200px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 13px 0;
    color: #566879;
    text-align: center;
    font: 700 16px/22px 'Formular', sans-serif;
    cursor: pointer;
}
.modal-login_txt {
    width: 290px;
    color: #566879;
    font: 400 12px/17px 'Formular', sans-serif;
}
@media(max-width: 500px) {
    .modal-login {
        padding: 80px 20px;
    }
    .modal-login.is-visible {
        padding: 88px 0 0;
        overflow-y: auto;
    }
    .modal-login .modal_title {
        text-align: left;
        font-size: 20px;
        line-height: 24px;
        margin: 0 0 13px;
    }
    .modal-login.is-visible .modal_title {
        text-align: center;
    }
    .modal-login.is-visible .modal_subtitle {
        margin: 0 0 15px;
        padding: 0 20px;
        font: 400 14px/20px 'Formular', sans-serif;
    }
    .modal-login .modal_title br {
        display: none;
    }
    .modal-login.is-visible .modal_title br {
        display: block;
    }
    .modal-login_form {
        padding: 0;
    }
    .modal-login.is-visible .modal-login_form {
        padding: 0 20px;
    }
    .modal-login.is-visible .modal_close {
        top: -40px;
        right: 10px;
        background: #FFFFFF;
        border-radius: 5px;
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .modal-login.is-visible .modal_close svg {
        width: 24px;
        height: 24px;
    }
    .modal-login.is-visible .modal_close path {
        fill: #566879;
    }
    .modal-login .modal_label {
        display: initial;
    }
    .modal-login.is-visible .modal_label {
        display: block;
    }
    .modal-login_row {
        flex-direction: column;
    }
    .modal-login_checkbox {
        margin: 0 auto 10px;
    }
    .modal-login_btn {
        margin: 0 0 10px;
    }
    .modal-login_info {
        border: none;
        flex-direction: column;
        padding: 0;
    }
    .modal-login_register {
        width: 100%;
        margin: 0 auto 25px;
    }
    .modal-login_txt {
        width: 100%;
    }
    .modal-login.is-visible .modal_wrapper {
        padding: 50px 0 20px;
        text-align: left;
        overflow: unset;
    }
}

/*MODAL VIDEO*/
.modal-video .modal_wrapper {
    width: 100%;
    padding: 0;
    background: transparent;
}
.modal-video .modal_close {
    top: 70px;
    right: 42px;
}
.modal-video iframe {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
}
@media (max-width: 500px) {
    .modal-video .modal_close {
        top: 60px;
        right: 42px;
    }
    .modal-video iframe {
        height: 400px;
    }
}
@media (max-width: 375px) {
    .modal-video .modal_close {
        top: 47px;
        right: 20px;
    }
    .modal-video iframe {
        height: 300px;
    }
}

/*BREADCRUMBS*/
.breadcrumbs {
    width: 1300px;
    margin: 0 auto 26px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumbs_item {
    color: #566879;
    font: 400 12px/19px 'Formular', sans-serif;
    list-style: none;
}
.breadcrumbs_link {
    color: #566879;
    cursor: pointer;
    position: relative;
    padding: 0 10px 0 0;
    margin: 0 10px 0 0;
}
.breadcrumbs_link:after {
    content: '/';
    position: absolute;
    right: 0;
    top: -2px;
    color: #566879;
    font: 400 12px/19px 'Formular', sans-serif;
}
@media(max-width: 1340px) {
    .breadcrumbs {
        display: none;
    }
}

/*BOTTOM BANNER*/
.banner {
    display: flex;
    justify-content: center;
    height: 120px;
    width: 1300px;
    margin: 0 auto;
    position: relative;
}
.banner_bg {
    background: #1D1B26;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 77px;
}
.banner_bg img {
    width: 261px;
}
.banner_slide {
    width: 884px;
    height: 120px;
}
.banner_nav {
    width: 1362px;
    margin: 0 auto;
    position: absolute;
}
.banner_nav-arrow:after {
    display: none;
}
.banner_nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 20px 50px rgba(67, 72, 79, 0.09);
    border-radius: 5px;
    width: 46px;
    height: 60px;
    top: 53px;
    transition: all .3s linear;
}
.banner_nav-arrow:hover {
    background: #E31E24;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.5);
    transition: all .3s linear;
}
.banner_nav-arrow path {
    fill: #566879;
    width: 28px;
    transition: all .3s linear;
}
.banner_nav-arrow:hover path {
    fill: #fff;
    transition: all .3s linear;
}
.banner_nav-arrow:first-child {
    left: 10px;
}
.banner_nav-arrow:last-child {
    right: 10px;
}
@media(max-width: 1340px) {
    .banner {
        width: 700px;
    }
    .banner_nav {
        width: 763px;
    }
    .banner_bg {
        padding: 0 30px;
    }
}
@media (max-width: 768px) {
    .banner {
        height: 84px;
        width: 100%;
    }
    .banner_bg {
        display: none;
    }
    .banner_slider {
        height: 84px;
        width: 100%;
    }
    .banner_slide {
        width: 100%;
        height: 84px;
        border-radius: 0;
        position: relative;
    }
    .banner_nav-arrow {
        background: #F5F8FC;
        box-shadow: 0 20px 50px rgba(67, 72, 79, 0.09);
        width: 30px;
        height: 84px;
        bottom: 0;
        top: auto;
        border-radius: 0;
    }
    .banner_nav {
        height: 84px;
        width: 100%;
    }
    .banner_nav-arrow:first-child {
        left: 0;
    }
    .banner_nav-arrow:last-child {
        right: 0;
    }
}


/*SALES*/
.sales {
    background: #fff;
    padding: 50px 0 70px;
}
.sales_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1300px;
    margin: 0 auto 40px;
}
.sales_head-title {
    color: #000000;
    font: 700 40px/49px 'Formular', sans-serif;
    margin: 0 40px 0 0;
}
.sales_head-decoration {
    width: 255px;
}
.sales_head-btn {
    margin: 0 0 0 auto;
    padding: 13px 77px;
}
.sales_slider {
    width: 1320px;
    margin: 0 auto;
}
.sales_slide {
    display: block;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    margin: 0 10px;
    width: 310px;
    padding: 0 0 26px;
}
.sales_slide-img {
    border-radius: 10px;
    width: 310px;
    height: 310px;
    position: relative;
    margin: 0 0 22px;
    overflow: hidden;
}
.sales_slide-img img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.sales_slide-date {
    display: flex;
    align-items: center;
    padding: 0 27px;
    margin: 0 0 16px;
}
.sales_slide-icon {
    width: 20px;
    margin: 0 6px 0 0;
}
.sales_slide-date-txt {
    margin: 0 10px 0 0;
    color: #566879;
    font: 500 14px/20px 'Formular', sans-serif;
    font-feature-settings: 'pnum' on, 'lnum' on;
}
.sales_slide-content {
    max-height: 120px;
    overflow: hidden;
    padding: 0 26px;
}
.sales_slide-title {
    font: 700 18px/22px 'Formular', sans-serif;
    color: #000000;
    margin: 0 0 10px;
}
.sales_slide-txt {
    color: rgba(0,0,0,0.5);
    font: 400 14px/21px 'Formular', sans-serif;
}
.sales_nav {
    width: 1362px;
    margin: 0 auto;
    position: relative;
}
.sales_nav-arrow:after {
    display: none;
}
.sales_nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 20px 50px rgba(67, 72, 79, 0.09);
    border-radius: 5px;
    width: 46px;
    height: 60px;
    transition: all .3s linear;
}
.sales_nav-arrow:hover {
    background: #E31E24;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.5);
    transition: all .3s linear;
}
.sales_nav-arrow path {
    fill: #566879;
    width: 28px;
    transition: all .3s linear;
}
.sales_nav-arrow:hover path {
    fill: #fff;
    transition: all .3s linear;
}
.sales_nav-arrow:first-child {
    left: 10px;
    top: -362px;
}
.sales_nav-arrow:last-child {
    right: 10px;
    top: -362px;
}
.sales_head-btn-mob {
    display: none;
}
.sales .swiper-pagination {
    display: none;
}
@media(max-width: 1340px) {
    .sales {
        padding: 50px 20px 70px;
        margin: 0 auto 60px;
        overflow: hidden;
    }
    .sales_head {
        justify-content: center;
        width: auto;
        margin: 0;
    }
    .sales_head-title {
        text-align: center;
        margin: 0 auto 23px;
    }
    .sales_head-decoration {
        display: none;
    }
    .sales_head-btn-pc {
        display: none;
    }
    .sales_nav {
        display: none;
    }
    .sales_slider {
        margin: 0 auto 50px
    }
    .sales_head-btn-mob {
        display: flex;
    }
}
@media(max-width: 768px) {
    .sales {
        padding: 27px 20px 36px;
        margin: 0 auto;
    }
    .sales_head-title {
        font: 700 20px/24px 'Formular', sans-serif;
    }
    .sales_slider {
        width: auto;
        margin: 0 auto 20px;
    }
    .sales_slide {
        width: 280px;
        margin: 0 auto;
    }
    .sales_slide-img {
        width: 280px;
        height: 280px;
    }
    .sales_slide-date {
        padding: 0 23px;
    }
    .sales_slide-date-txt {
        font: 500 12px/17px 'Formular', sans-serif;
    }
    .sales_slide-content {
        padding: 0 23px;
    }
    .sales .swiper-pagination {
        display: block;
        position: relative;
        text-align: center;
        z-index: 1000;
        margin: 22px auto 0;
    }
    .sales .swiper-pagination-bullet {
        width: 45px;
        height: 6px;
        background: rgba(0, 0, 0, 0.05);
        margin: 0 6px;
        border-radius: unset;
        opacity: 1;
    }
    .sales .swiper-pagination-bullet-active {
        background: #E31E24;
    }
}
/*BASE SEARCH*/
.base_search label{
    position: relative;
}
.base_search svg {
    position: absolute;
    width: 24px;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
}
.base_search input {
    padding: 13px 14px 13px 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #E2E9F2;
    border-radius: 5px;
    width: 100%;
    font: 400 16px/20px 'Formular', sans-serif;
    color: #000;
}
.base_search input::placeholder {
    color: #B3B3B3;
}

/*BASE PLUS AND MINUS COUNTER*/
.base_quantity {
    background: #F8FAFD;
    border-radius: 5px;
    width: 120px;
    margin: 0 12px 0 0;
    height: 40px;
    display: flex;
    align-items: center;
    color: #191717;
    font: 700 14px/22px 'Formular', sans-serif;
    justify-content: space-between;
    padding: 2px;
}
.base_quantity-field {
    text-align: center;
    font: 700 14px/22px 'Formular', sans-serif;
    width: 42px;
    background: transparent;
}
.base_quantity-btn {
    font: 400 18px/29px 'Formular', sans-serif;
    width: 36px;
    height: 36px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px 0 0 5px;
    flex-shrink: 0;
    cursor: pointer;
}
.base_quantity-btn:last-child {
    border-radius: 0 5px 5px 0;
}

/*PRODUCT CARD*/
.product-card {
    border: 1px solid #E2E9F2;
    padding: 10px;
    background: #fff;
    width: 325px;
    position: relative;
}
.product-card:hover {
    border-bottom: 0;
    filter: drop-shadow(0px 0px 30px rgba(2, 36, 86, 0.1));
    transition: all .3s linear;
    z-index: 100;
}
.product-card_row {
    display: flex;
    align-items: flex-start;
    margin: 0 0 27px;
}
.product-card_options {
    background: #F5F8FC;
    border-radius: 5px;
    margin: 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}
.product-card_options-icon {
    width: 25px;
}
.product-card_image {
    display: block;
    width: 194px;
    height: 194px;
    position: relative;
    flex-shrink: 0;
    margin: 24px -34px 0 10px;
}
.product-card_image-item {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    cursor: pointer;
}
.product-card_reviews-txt {
    display: block;
    color: #000000;
    margin: 0 0 9px;
    font: 700 14px/20px 'Formular', sans-serif;
    cursor: pointer;
}
.product-card_reviews-txt  span {
    font-weight: 400;
    color: #566879;
}
.product-card_reviews-favorites {
    width: 38px;
    height: 38px;
    background: #F5F8FC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 auto;
    position: relative;
    cursor: pointer;
}
.product-card_reviews-favorites input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.product-card_reviews-favorites input:checked ~ svg path {
    fill: #566879;
}
.product-card_reviews-favorites:hover path {
    stroke: #E31E24;
    fill: transparent;
    cursor: pointer;
}
.product-card_quick {
    display: none;
    font: 700 16px/20px 'Formular', sans-serif;
    border: 4px solid rgba(0, 0, 0, 0.06);
    color: #fff;
    width: 181px;
    height: 181px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
}
.product-card_quick-inner {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    padding: 0 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 7px solid #fff;
}
.product-card:hover .product-card_quick {
    display: block;
}
.product-card_quick svg {
    margin: 0 auto 15px;
}
.product-card_detail {
    margin: 0 0 13px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    color: #566879;
    font: 400 14px/20px 'Formular', sans-serif;
}
.product-card_detail-stock {
    padding: 4px 10px;
    border-radius: 3px;
    margin: 0 12px 0 0;
    color: #fff;
    font: 700 12px/16px 'Formular', sans-serif;
}
.product-card_title {
    display: block;
    color: #000000;
    font: 700 16px/22px 'Formular', sans-serif;
    margin: 0 0 13px;
    height: 44px;
    padding: 0 10px;
    overflow: hidden;
    cursor: pointer;
}
.product-card_brand {
    width: 150px;
    height: 24px;
    position: relative;
    margin: 0 0 20px;
    padding: 0 10px;
}
.product-card_brand-image {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.product-card_separator {
    width: 100%;
    margin: 0 auto 10px;
    border-bottom: thin solid #E2E9F2;
}
.product-card_price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    padding: 0 10px;
    height: 40px;
    font: 700 22px/27px 'Formular', sans-serif;
}
.product-card_price-quantity {
    display: none;
    margin: 0;
}
.product-card:hover .product-card_price-quantity {
    display: flex;
}
.product-card_buy {
    display: none;
    padding: 0 15px 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    position: absolute;
    top: 100%;
    background: #fff;
    width: 100%;
    left: 0;
}
.product-card:hover .product-card_buy {
    display: flex;
}
.product-card_buy-cart {
    text-align: center;
    width: 118px;
    padding: 14px 0;
    font: 700 16px/24px 'Formular', sans-serif;
    box-shadow: 0 4px 10px rgba(21, 165, 36, 0.5);
    margin: 0 10px 0 0;
    cursor: pointer;
}
.product-card_buy-click {
    text-align: center;
    width: 165px;
    color: #566879;
    border: 1px solid #E2E9F2;
    border-radius: 5px;
    padding: 14px 0;
    font: 700 16px/24px 'Formular', sans-serif;
    cursor: pointer;
}
.product-card_buy .product-card_separator {
    margin: 0 0 20px;
    width: 100%;
}
.product-card_buy-credit {
    width: 100%;
    margin: 10px 0 0;
    position: relative;
}
.product-card_buy-credit-head {
    padding: 15px 13px 15px 25px;
    background: #F5F8FC;
    border: 1px solid #E2E9F2;
    border-radius: 5px;
    color: #000000;
    display: flex;
    align-items: center;
    font: 700 16px/20px 'Formular', sans-serif;
    cursor: pointer;
}
.product-card_buy-credit-head svg {
    margin: 0 0 0 auto;
    width: 26px;
    height: 26px;
}
.product-card_buy-credit-content {
    opacity: 0;
    bottom: 60%;
    z-index: -1;
    position: absolute;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 50px rgba(2, 36, 86, 0.2);
    border-radius: 5px;
    padding: 10px;
    transition: bottom .3s linear;
}
.product-card_buy-credit.active .product-card_buy-credit-content {
    opacity: 1;
    z-index: 1;
    bottom: 110%;
    left: 0;
    transition: bottom .3s linear;
}
.product-card_buy-credit-link {
    display: flex;
    align-items: center;
    border-radius: 5px;
    color: #FFFFFF;
    padding: 10px 14px;
    font: 400 14px/17px 'Formular', sans-serif;
    cursor: pointer;
}
.product-card_buy-credit-zood {
    background: #303593;
    margin: 0 0 10px;
}
.product-card_buy-credit-kaspi {
    background: #F14635;
}
.product-card_buy-credit-icon {
    width: 30px;
    margin: 0 14px 0 0;
}
.product-card_buy-credit-price {
    font: 700 16px/20px 'Formular', sans-serif;
}
@media (max-width: 1300px) {
    .product-card {
        width: 100%;
    }
    .product-card_row {
        justify-content: space-between;
    }
    .product-card_options {
        width: 38px;
        height: 38px;
    }
    .product-card_image {
        width: 167px;
        height: 167px;
    }
    .product-card_reviews {
        position: relative;
    }
    .product-card_reviews-txt {
        font-size: 12px;
        line-height: 16px;
    }
    .product-card_reviews-favorites {
        width: 36px;
        height: 36px;
    }
    .product-card_reviews-favorites:hover path {
        stroke: #566879;
    }
    .product-card_detail {
        font-size: 11px;
        line-height: 16px;
    }
    .product-card_detail-stock {
        font-size: 10.5px;
    }
    .product-card_title {
        font-size: 14px;
        line-height: 19px;
        margin: 0 0 10px;
    }
    .product-card_price-quantity {
        display: flex;
    }
    .product-card_buy {
        display: flex;
        position: unset;
        padding: 0 3px 10px;
    }
    .product-card_buy .product-card_separator {
        padding: 10px 0 0;
    }
    .product-card_buy-cart {
        font-size: 14px;
        line-height: 21px;
        width: 35%;
    }
    .product-card_buy-click {
        font-size: 14px;
        line-height: 21px;
        width: 61%;
    }
}

/*PAGINATION*/
.pagination {
    display: flex;
    align-items: center;
    /* justify-content: flex-end; */
    justify-content: center;
}
.pagination_txt {
    background: #FFFFFF;
    border-radius: 5px;
    border: thin solid #EEEEEE;
    padding: 7px 15px;
    width: 100px;
    margin: 0 32px 0 0;
    color: rgba(86, 104, 121, 0.5);
    font: 400 16px/26px 'Formular', sans-serif;
}
.pagination_arrow {
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination_page {
    color: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font: 700 16px/26px 'Formular', sans-serif;
    transition: all .2s linear;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination_page.active {
    background: #E31E24;
    color: #FFFFFF;
}
.pagination_page:hover {
    color: #000000;
}
.pagination_page.active:hover {
    background: #E31E24;
    color: #FFFFFF;
    cursor: default;
}


    /*FAQ*/
.faq {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto 100px;
}
.faq_title {
    margin: 0 auto 30px;
    font: 700 40px/49px 'Formular', sans-serif;
}
.faq_item {
    border: 1px solid #E2E9F2;
    position: relative;
    list-style: none;
}
.faq_item input[type="checkbox"] {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    left: 0;
}
.faq-main_arrow {
    position: absolute;
    right: 22px;
    top: 27px;
    transition: all 0.3s linear;
}
.faq_item input[type="checkbox"]:checked ~ .faq-main_arrow {
    transform: rotate(-180deg);
    transition: all 0.3s linear;
}
.faq-main_head {
    padding: 28px 50px;
    color: #000000;
    font: 700 18px/22px 'Formular', sans-serif;
}
.faq_item input[type="checkbox"]:checked ~ .faq-main_head {
    background: #F5F8FC;
    transition: all 0.3s linear;
}
.faq-main_answer {
    height: 0;
    opacity: 0;
    padding: 0 50px;
    transition: all 0.3s linear;
    color: #566879;
    font: 400 18px/27px 'Formular', sans-serif;
}
.faq_item input[type="checkbox"]:checked ~ .faq-main_answer {
    background: #F5F8FC;
    position: relative;
    height: auto;
    opacity: 1;
    z-index: 2;
    padding: 0 50px 40px;
    transition: all 0.3s linear;
}
.faq-main_answer-txt {
    opacity: 0;
}
.faq_item input[type="checkbox"]:checked ~ .faq-main_answer .faq-main_answer-txt {
    opacity: 1;
    transition: all 0.3s linear .2s;
}
@media(max-width: 1300px) {
    .faq {
        padding: 0 20px;
    }
    .faq_title {
        font-size: 20px;
        line-height: 24px;
        margin: 0 0 24px;
        text-align: center;
    }
    .faq-main_arrow {
        width: 22px;
        height: 22px;
        right: 14px;
        top: 10px;
    }
    .faq-main_head {
        padding: 11px 40px 11px 20px;
        font: 500 14px/17px 'Formular', sans-serif;
    }
    .faq-main_answer {
        font: 400 14px/21px 'Formular', sans-serif;
    }
    .faq_item input[type="checkbox"]:checked ~ .faq-main_answer {
        padding: 0 20px 20px;
    }
}

/*MODAL VIEW*/
.modal-view_wrapper {
    width: 1300px;
    background: #fff;
    display: flex;
    align-items: flex-start;
    border-radius: 10px;
    margin: auto;
    z-index: 10;
    position: relative;
    opacity: 0;
    transition: all 0.2s linear;
    transform: scale(0.7);
    overflow: hidden;
}
.modal.is-visible .modal-view_wrapper {
    transform: scale(1);
    opacity: 1;
}
.modal-view_info {
    width: 933px;
}
.modal-view_title {
    color: #000000;
    padding: 38px 74px 30px;
    font: 700 30px/37px 'Formular', sans-serif;
}
.modal-view_inner {
    display: flex;
    border-top: 1px solid #E2E9F2;
    border-bottom: 1px solid #E2E9F2;
}
.modal-view_gallery {
    display: flex;
    align-items: flex-start;
    padding: 10px;
    background: #FFFFFF;
    border-right: 1px solid #E2E9F2;
    position: relative;
}
.modal-view_gallery-tab {
    width: 72px;
    height: 72px;
    border: 1px solid #EEEEEE;
    margin: 0 0 10px;
    position: relative;
}
.modal-view_gallery-tab img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
}
.modal-view_gallery-tab.active {
    border: 1px solid #15A524;
}
.modal-view_gallery-col {
    margin: 50px;
}
.modal-view_gallery-content {
    width: 300px;
    height: 300px;
    position: relative;
}
.modal-view_gallery-content img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.modal-view_gallery-content.active {
    display: block;
}
.modal-view_gallery-brand {
    width: 150px;
    position: absolute;
    bottom: 15px;
    right: 18px;
}
.modal-view_trait {
    padding: 40px;
}
.modal-view_trait-title {
    color: #000;
    font: 700 20px/24px 'Formular', sans-serif;
    margin: 0 0 26px;
}
.modal-view_trait-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 0 0 15px;
}
.modal-view_trait-row:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url(../svg/dots.svg) repeat-x center/auto;
}
.modal-view_trait-key {
    color: #566879;
    font: 400 16px/22px 'Formular', sans-serif;
    padding: 0 22px 0 0;
    background: #fff;
    position: relative;
}
.modal-view_trait-value {
    color: #000000;
    font: 700 16px/22px 'Formular', sans-serif;
    padding: 0 0 0 22px;
    background: #fff;
    position: relative;
}
.modal-view_trait-center {
    text-align: center;
}
.modal-view_trait-more {
    display: inline-block;
    text-transform: uppercase;
    color: #000000;
    font: 500 14px/20px 'Formular', sans-serif;
    position: relative;
    margin: 40px 0 20px 50px;
    border-bottom: thin dashed rgba(86, 104, 121, 0.3);
}
.modal-view_trait-more:before {
    content: '+';
    position: absolute;
    top: -9px;
    left: -50px;
    width: 36px;
    height: 36px;
    background: #F1F3F4;
    border-radius: 35px;
    font: 500 20px/20px 'Formular', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-view_option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    padding: 0 0 0 74px;
    color: #566879;
    font: 400 12px/19px 'Formular', sans-serif;
}
.modal-view_option-item {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #E2E9F2;
}
.modal-view_order {
    background: #F8FAFD;
    border-left: 1px solid #E2E9F2;
    width: 368px;
    padding: 0 0 50px;
}
.modal-view_order-head {
    display: flex;
    height: 60px;
    margin: 0 auto 45px;
    border-bottom: 1px solid #E2E9F2;
}
.modal-view_order-head-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 122px;
    border-right: 1px solid #E2E9F2;
}
.modal-view_order-head-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 123px;
    border-radius: 0 10px 0 0;
    background: #E31E24;
}
.modal-view_order-price {
    color: #000000;
    font: 700 30px/37px 'Formular', sans-serif;
    margin: 0 0 35px;
    text-align: center;
}
.modal-view_order-quantity {
    width: 150px;
    margin: 0 auto 22px;
    background: #fff;
    height: 50px;
}
.modal-view_order-quantity .base_quantity-btn {
    background: #F1F3F4;
    width: 36px;
    height: 47px;
    font-size: 20px;
}
.modal-view_order-quantity .base_quantity-field {
    font-size: 18px;
}
.modal-view_order-cart {
    width: 302px;
    height: 50px;
    margin: 0 auto 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 700 16px/24px 'Formular', sans-serif;
    box-shadow: 0 4px 10px rgba(21, 165, 36, 0.5);
}
.modal-view_order-cart svg {
    margin: 0 12px 0 -12px;
}
.modal-view_order-buy {
    width: 302px;
    height: 50px;
    margin: 0 auto 20px;
    border: 1px solid #E2E9F2;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #566879;
    font: 700 16px/24px 'Formular', sans-serif;
}
.modal-view_order-hr {
    border-bottom: thin solid #E2E9F2;
    width: 302px;
    margin: 0 auto 20px;
}
.modal-view_order-credit {
    width: 302px;
    margin: 0 auto 35px;
}
.modal-view_order-credit .product-card_buy-credit-head {
    background: #fff;
    border: 0;
}
.modal-view_order-cheaper {
    position: relative;
    color: #566879;
    border-bottom: thin dashed rgba(86, 104, 121, 0.3);
    font: 400 14px/20px 'Formular', sans-serif;
    margin: 0 0 0 27px;
    cursor: pointer;
}
.modal-view_order-cheaper:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../svg/ic-info.svg) no-repeat center/cover;
    position: absolute;
    left: -27px;
    top: 0;
}
.card-main_info-stock {
    position: relative;
    color: #000;
    font: 700 14px/20px 'Formular', sans-serif;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
}
.card-main_info-stock span {
    display: block;
    color: #566879;
    margin: 0 0 0 8px;
    font: 400 14px/20px 'Formular', sans-serif;
}
.card-main_info-stock:before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    margin: 0 8px 0 0;
}
.card-main_info-stock.in:before {
    background: #15A524;
}
.card-main_info-stock.out:before {
    background: #E31E24;
}
.card-main_info-stock.out {
    color: #E31E24;
}
.modal-view_order-link {
    width: 302px;
    margin: 0 auto;
}


/*MODAL MOB HEAD*/
.modal-mob_head {
    display: none;
    background: #fff;
    box-shadow: 0 4px 27px rgb(0 0 0 / 10%);
    padding: 14px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.modal.is-visible .modal-mob_head {
    display: block;
}
.modal-mob_head-link {
    display: flex;
    align-items: center;
    color: #191717;
    font: 400 16px/20px 'Formular', sans-serif;
}
.modal-mob_head-link svg {
    margin: 0 5px 0 0;
}

/*MODAL FILTER*/
.modal-filter_body {
    background: #F5F8FC;
    padding: 90px 0;
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
}
.modal-filter_body .catalog-main_filter {
    width: auto;
    margin: 0 auto 25px;
    padding: 0 20px 25px;
    border-bottom: thin solid #E2E9F2;
}
.modal-filter_body .catalog-main_filter:last-child {
    border-bottom: 0;
    margin: 0;
}
.modal-filter_body .catalog-main_filter-dropdown {
    padding: 0;
}
.modal-filter_body .catalog-main_filter-content {
    padding: 22px 0 0;
}
.modal .catalog-main_buttons {
    display: none;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 5px 20px;
    box-shadow: 0 4px 27px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.modal.is-visible .catalog-main_buttons  {
    display: flex;
    margin: 0;
}
.modal .catalog-main_buttons-reset {
    margin: 0 40px 0 0;
}
.modal .catalog-main_buttons-submit {
    padding: 12px 20px;
}

/*MODAL MOB CITY*/
.modal-city_body {
    padding: 80px 20px;
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
    background: #fff;
}
.modal-city .base_search {
    margin: 0 0 15px;
}
.modal-city.is-visible .catalog-main_buttons  {
    display: flex;
}
.modal-city_col {
    padding: 20px 26px;
}
.modal-city_col:first-child {
    background: #F8FAFD;
    border-radius: 5px;
}
.modal-city_subtitle {
    color: #000000;
    font: 700 16px/24px 'Formular', sans-serif;
    margin: 0 0 20px;
}
.modal-city_label {
    display: block;
    margin: 0 0 20px;
    font: 400 14px/17px 'Formular', sans-serif;
    position: relative;
}
.modal-city_txt {
    color: #566879;
    padding: 0 0 0 27px;
    position: relative;
}
.modal-city_label input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.modal-city_label input:checked + .modal-city_txt {
    color: #000;
    transition: color .2s linear;
}
.modal-city_txt.red {
    font-weight: 500;
    color: #E31E24;
}
.modal-city_txt:before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #E2E9F2;
    background: #F5F8FC;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.modal-city_label input:checked + .modal-city_txt:after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E31E24;
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
}



/*MODAL ASK*/
.modal-ask {
    overflow-y: auto;
}
.modal-ask .modal_wrapper {
    padding: 58px 82px;
}
.modal-ask_form-inner {
    display: flex;
    flex-direction: column;
    max-height: 284px;
    flex-wrap: wrap;
    margin: 0 auto 34px;
}
.modal-ask_buttons {
    display: flex;
    justify-content: center;
}
.modal-ask_form .modal_label {
    margin: 0 0 11px;
    width: 550px;
}
.modal-ask_form .modal_label:first-child {
    margin: 0 30px 0 0;
}
.modal-ask_form .modal_label-input {
    padding: 12px;
    background: #F8FAFD;
    font: 400 16px/20px 'Formular', sans-serif;
}
.modal-ask_form .modal_policy {
    margin: 0 0 13px;
}
.modal-ask_submit {
    width: 270px;
    margin: 0 5px;
    padding: 13px 0;
    font: 700 16px/24px 'Formular', sans-serif;
}
.modal-ask_submit:hover {
    transition: all .3s linear;
    background: #2EB93C;
    box-shadow: 0 4px 10px rgba(21, 165, 36, 0.5);
}
.modal-ask_cancel {
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 270px;
    margin: 0 5px;
    padding: 13px 0;
    color: #566879;
    font: 700 16px/24px 'Formular', sans-serif;
}
.modal-ask_cancel:hover {
    transition: all .3s linear;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
@media(max-width: 1370px) {
    .modal-ask .modal_wrapper {
        max-width: 100%;
        border-radius: 0;
    }
    .modal-ask_form-inner {
        max-height: unset;
        text-align: left;
    }
    .modal-ask_form .modal_label {
        width: 100%;
        margin: 0 auto 10px;
    }
    .modal-ask_form .modal_label:first-child {
        margin: 0 auto 10px;
    }
}
@media(max-width: 768px) {
    .modal-ask {
        padding: 88px 0 0;
    }
    .modal-ask.is-visible .modal_wrapper {
        padding: 28px 20px;
        border-radius: 10px 10px 0 0;
        overflow: unset;
    }
    .modal-ask_buttons {
        flex-direction: column;
    }
    .modal-ask_submit {
        width: 100%;
        margin: 0 auto 15px;
    }
    .modal-ask_cancel {
        width: 100%;
        margin: 0 auto;
    }
    .modal-ask .modal_close {
        top: -40px;
        right: 10px;
        background: #FFFFFF;
        border-radius: 5px;
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .modal-ask .modal_close svg {
        width: 24px;
        height: 24px;
    }
    .modal-ask .modal_close path {
        fill: #566879;
    }
}


/*MODAL SPIKES*/
.modal-spikes {
    opacity: 0;
    position: absolute;
    top: 100%;
}
.modal-spikes.is-visible {
    opacity: 1;
    width: 1325px;
    height: 430px;
    padding: 15px 15px 15px 30px;
    border-radius: 0 5px 5px 5px;
    background: #fff;
    display: flex;
}
.modal_overlay {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s linear;
    background: rgba(0,0,0,0.5);
}
.modal_overlay.is-visible {
    opacity: 1;
    visibility: visible;
}
.modal-spikes_col {
    width: 620px;
    margin: 0 27px 0 0;
}
.modal-spikes_catalog {
    background: #FFFFFF;
    border-radius: 5px;
    margin: 0 0 4px;
    position: relative;
    height: 62px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #000;
    border: 1px solid #E2E9F2;
    overflow: hidden;
    padding: 0 25px 0 0;
    font: 700 14px/17px 'Formular', sans-serif;
}
.modal-spikes_catalog:hover {
    filter: drop-shadow(0px 5px 21px rgba(0, 0, 0, 0.08));
    transition: all .2s linear;
}
.modal-spikes_catalog-img {
    width: 75px;
    margin: 0 50px 0 0;
    position: relative;
    z-index: 1;
}
.modal-spikes_catalog-arrow {
    margin: 0 0 0 auto;
}
.modal-spikes_catalog-brand {
    position: absolute;
    left: 63px;
    top: 4px;
    width: 60px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 500 10px/12px 'Formular', sans-serif;
    text-transform: uppercase;
    color: #000000;
    background: url(../svg/yellow-arrow.svg) no-repeat center/contain;
}
.modal-spikes_category {
    display: block;
    width: 200px;
    height: 90px;
    border-radius: 5px;
    color: #FFFFFF;
    font: 700 14px/19px 'Formular', sans-serif;
    text-transform: uppercase;
    padding: 23px 15px;
    position: relative;
}
.modal-spikes_category:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    background: linear-gradient(90deg, #15151B 30.12%, rgba(21, 21, 27, 0) 95%);
}
.modal-spikes_category:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    transition: width .2s linear;
    background: linear-gradient(90deg, #E31E24 30.12%, rgba(227, 30, 36, 0) 95%);
}
.modal-spikes_category:hover:after {
    width: 100%;
    transition: width .2s linear;
}
.modal-spikes_category span {
    position: relative;
    z-index: 10;
}
.modal-spikes_category-winter {
    background: url(../images/winter.jpg) no-repeat center/cover;
}
.modal-spikes_category-summer {
    background: url(../images/summer.jpg) no-repeat center/cover;
}
.modal-spikes_category-seasons {
    background: url(../images/seasons.jpg) no-repeat center/cover;
}
.modal-spikes_col:last-child {
    background: #F5F8FC;
    border-radius: 5px;
    max-width: 637px;
    width: 100%;
    padding: 30px 27px;
    margin: 0;
}
.modal-spikes_subtitle {
    margin: 0 0 13px;
}
.modal-spikes_subtitle-name {
    color: #000000;
    font: 700 16px/19px 'Formular', sans-serif;
}
.modal-spikes_subtitle-all {
    display: block;
    color: #566879;
    font: 700 12px/15px 'Formular', sans-serif;
    padding: 7.5px 15px;
    background: #FFFFFF;
    border: 1px solid #EFF3F9;
    border-radius: 32px;
}
.modal-spikes_wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 26px;
    padding: 0 0 21px;
    border-bottom: thin solid #E2E9F2;
}
.modal-spikes_size {
    color: #566879;
    font: 400 16px/20px 'Formular', sans-serif;
    width: 140px;
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid #E2E9F2;
    border-radius: 5px;
    margin: 0 6px 6px 0;
    text-align: center;
}
.modal-spikes_size:nth-child(4n) {
    margin: 0 0 6px;
}
.modal-spikes_brand {
    display: block;
    background: #FFFFFF;
    border-radius: 5px;
    width: 138px;
    height: 51px;
    margin: 0 9px 9px 0;
    position: relative;
}
.modal-spikes_brand:nth-child(4n) {
    margin: 0 0 9px;
}
.modal-spikes_brand img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    object-fit: contain;
    width: 90%;
    height: 90%;
}
.modal-spikes_wrapper:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}
@media (max-width: 1023px) {
    .modal-spikes.is-visible {
        width: 100%;
        height: 100%;
        transition: left .5s linear;
        z-index: 1001;
        opacity: 1;
    }
    .modal-spikes.is-visible {
        flex-direction: column;
        width: 100%;
        height: 100%;
        padding: 76px 20px;
        top: 47px;
        transition: left .5s linear;
    }
    .modal-spikes .modal-mob_head {
        top: 47px;
    }
    .modal-spikes_category {
        width: 280px;
        height: 123px;
        margin: 0 auto 10px;
        padding: 17px 15px;
    }
    .modal-spikes .home-nav_link-icon {
        width: 23px;
        height: 23px;
        left: 15px;
        bottom: 15px;
    }
    .modal-spikes_catalog {
        width: 280px;
        margin: 0 auto 10px;
        padding: 0 10px 0 0;
    }
    .modal-spikes_catalog:nth-child(3),
    .modal-spikes_catalog:nth-child(4) {
        font-size: 12px;
        line-height: 14px;
    }
    .modal-spikes_catalog-arrow {
        display: none;
    }
    .modal-spikes_catalog-img {
        margin: 0 40px 0 0;
        left: -8px;
        bottom: -8px;
    }
    .modal-spikes_catalog-brand {
        left: 52px;
    }
}

/*MODAL MENU*/
.modal-menu {
    display: none;
    overflow-y: auto;
    top: 47px;
    width: 100%;
    height: 100%;
    left: -100%;
    transition: left .4s linear;
}
.modal-menu.is-visible {
    padding: 13px 20px;
	display: block;
    background: #fff;
    left: 0;
    z-index: 1000;
    transition: left .4s linear;
}
.modal-menu_language {
    background: #F8FAFD;
    border-radius: 10px;
    margin: 0 auto 20px;
    width: 280px;
}
.modal-menu_lang {
    justify-content: center;
    padding: 13px 5px;
    width: 92px;
    color: #000000;
    border-left: thin solid #fff;
    font: 700 12px/15px 'Formular', sans-serif;
}
.modal-menu_lang:first-child {
    border-left: 0;
}
.modal-menu_lang.active {
    background: #E2E9F2;
    border-right: thin solid #E2E9F2;
}
.modal-menu_lang.active:first-child {
    border-radius: 10px 0 0 10px;
}
.modal-menu_lang.active:nth-child(3) {
    border-radius: 0 10px 10px 0
}
.modal-menu_lang.active:first-child ~ .modal-menu_lang:nth-child(2),
.modal-menu_lang.active:nth-child(2),
.modal-menu_lang.active:nth-child(3),
.modal-menu_lang.active:nth-child(2) ~ .modal-menu_lang:nth-child(3){
    border-left: 0;
}
.modal-menu_lang:before {
    content: '';
    width: 21px;
    height: 14px;
    margin: 0 9px 0 0;
}
.modal-menu_city {
    display: flex;
    align-items: center;
    width: 280px;
    margin: 0 auto;
    padding: 0 0 30px;
    border-bottom: thin solid #E2E9F2;
}
.modal-menu_city-select {
    width: 100%;
}
.modal-menu_city-icon {
    width: 50px;
    height: 50px;
    background: #F8FAFD;
    margin: 0 18px 0 0;
    flex-shrink: 0;
}
.modal-menu_city-label {
    display: block;
    color: #566879;
    position: absolute;
    top: -9px;
    font: 400 14px/22px 'Formular', sans-serif;
}
.modal-menu_city-name {
    margin: 9px 0 -9px;
    display: inline-block;
    color: #000;
    border-bottom: thin dashed #000;
    font: 700 16px/22px 'Formular', sans-serif;
}
.modal-menu_city-arrow {
    margin: 0 0 0 auto;
    flex-shrink: 0;
}
.modal-menu_category {
    color: #566879;
    width: 280px;
    margin: 0 auto;
    font: 700 18px/22px 'Formular', sans-serif;
    padding: 16px 0;
    border-bottom: thin solid #E2E9F2;
}
.modal-menu_category-img {
    margin: 0 10px 0 0;
    fill: #566879;
}
.modal-menu_btn {
    text-align: center;
    background: #F5F8FC;
    border-radius: 5px;
    color: #566879;
    text-transform: uppercase;
    font: 700 14px/17px 'Formular', sans-serif;
    padding: 12px 10px;
    width: 135px;
}
.modal-menu_btn:first-child {
    margin: 0 9px 0 0;
}
.modal-menu_btn:before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    margin: 0 auto 10px;
    flex-shrink: 0;
}
.modal-menu_centers:before {
    background: url(../svg/ic-pin-grey.svg) no-repeat center/contain;
}
.modal-menu_calculate:before {
    background: url(../svg/ic-calc-grey.svg) no-repeat center/contain;
}
.modal-menu_subtitle {
    color: #000;
    margin: 0 0 16px;
    text-align: center;
    font: 900 20px/24px 'Formular', sans-serif;
}
.modal-menu_page {
    display: block;
    text-align: center;
    margin: 0 0 10px;
    color: #566879;
    font: 400 16px/20px 'Formular', sans-serif;
}
.modal-menu_page:focus {
    color: #E31E24;
}

/*MODAL INFO*/
.modal-info_body {
    background: #F8FAFD;
    border-radius: 20px;
    max-width: 1300px;
    width: 100%;
    padding: 48px 78px;
    position: relative;
    z-index: 10;
    height: 650px;
    margin: auto;
}
.modal-info_head {
    display: flex;
    align-items: center;
    padding: 0 0 37px;
    margin: 0 0 50px;
    border-bottom: thin solid rgba(156, 156, 156, 0.2);
}
.modal-info_title {
    color: #000000;
    margin: 0 80px 0 0;
    font: 700 40px/49px 'Formular', sans-serif;
}
.modal-info_tabs {
    background: #FFFFFF;
    border: 1px solid #F7F7F7;
    border-radius: 5px;
    max-width: 500px;
    width: 100%;
    padding: 5px;
    filter: drop-shadow(0px 20px 30px rgba(2, 36, 86, 0.05));
}
.modal-info_tab {
    display: block;
    width: 48%;
    padding: 12px;
    color: #566879;
    text-align: center;
    font: 700 16px/26px 'Formular', sans-serif;
    transition: all .2s linear;
    border-radius: 3px;
}
.modal-info_tab.active,
.modal-info_tab:hover {
    background: #E31E24;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.5);
    color: #fff;
}
.modal-info_content.active {
    display: flex;
    align-items: flex-start;
}
.modal-info_txt {
    max-width: 692px;
    width: 100%;
    margin: 0 50px 0 0;
    color: #566879;
    font: 400 18px/29px 'Formular', sans-serif;
}
.modal-info_subtitle {
    color: #000;
    font: 700 20px/24px 'Formular', sans-serif;
    margin: 0 0 20px;
    text-transform: uppercase;
}
.modal-info_img {
    width: 415px;
}
.modal-info_txt li {
    margin: 0 0 15px 23px;
}
.modal-info .modal-mob_head {
    display: none;
}

@media(max-width: 1200px) {
    .modal-info_body {
        height: 100%;
        overflow-y: auto;
        padding: 80px 20px 50px;
        border-radius: 0;
    }
    .modal-info .modal_close {
        display: none;
    }
    .modal-info.is-visible .modal-mob_head {
        display: block;
    }
    .modal-info_head {
        flex-direction: column;
        align-items: center;
        border-bottom: none;
        padding: 0;
        margin: 0 0 14px;
    }
    .modal-info_title {
        margin: 0 0 20px;
    }
    .modal-info_content {
        flex-direction: column;
    }
    .modal-info_txt {
        max-width: 100%;
        margin: 0 0 20px;
    }
    .modal-info_img {
        margin: 0 auto;
    }
    .modal-info_img img {
        display: block;
        margin: 0 auto;
        width: 100%;
        height: 100%;
    }
}

@media(max-width: 991px) {
    .modal-info_title {
        font-size: 20px;
        line-height: 24px;
    }
    .modal-info_tab {
        font-size: 14px;
        line-height: 17px;
    }
    .modal-info_txt {
        font-size: 14px;
        line-height: 22px;
    }
    .modal-info_subtitle {
        text-align: center;
        font-size: 14px;
        line-height: 22px;
    }
}
@media(max-width: 500px) {
    .modal-info_img {
        width: 280px;
        margin: 0 auto;
    }
}

/*COOKIE*/
.cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 60px;
    z-index: 100;
    background: #fff;
}
.cookie_inner {
    width: 1000px;
}
.cookie_title {
    font: 700 22px/35px 'Formular', sans-serif;
    margin: 0 0 6px;
}
.cookie_txt {
    color: #566879;
    margin: 0 30px 0 0;
    font: 400 18px/28px 'Formular', sans-serif;
}
.cookie_btn {
    padding: 13px 88px;
}
@media(max-width: 768px) {
    .cookie {
        flex-direction: column;
        padding: 24px 20px;
    }
    .cookie_inner {
        width: 100%;
        margin: 0 0 30px;
    }
    .cookie_title {
        font-size: 20px;
        line-height: 26px;
    }
    .cookie_txt {
        font-size: 16px;
        line-height: 24px;
    }
    .cookie_btn {
        width: 100%;
        padding: 13px 10px;
    }
}

.fixed-panel {
    position: fixed;
    z-index: 10;
    right: 0;
    top: 0;
    width: 100px;
    height: 50vh;
}
.fixed-panel.active {
    z-index: 100000;
}
.fixed-panel_wheel {
    position: absolute;
    width: 94px;
    height: 208px;
    top: calc(50vh - 104px);
    left: 51%;
    transform: translateX(-50%);
}
.fixed-panel:before {
    content: '';
    position: absolute;
    width: 59px;
    height: 50vh;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/track.png) repeat-y center/contain;
}
.fixed-panel_cart {
    background: #FFFFFF;
    box-shadow: 0 20px 50px rgba(67, 72, 79, 0.09);
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 0 0 17px;
    width: 100px;
    height: 70px;
    bottom: 22px;
    left: -59px;
    position: absolute;
    transition: left 1s linear;
}
.fixed-panel_cart span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #E31E24;
    color: #FFFFFF;
    font: 700 12px/14px 'Formular', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 14px;
    right: 40px;
}
.active .fixed-panel_cart {
    left: -900px;
    transition: left .95s .05s linear;
}
@media(max-width: 1580px) {
    .fixed-panel {
        display: none;
    }
}
.active.modal_overlay {
    opacity: 1;
    visibility: visible;
}

/*MODAL CART CHECKING*/
.modal-cart {
    background: #fff;
    display: block;
    right: -905px;
    transition: right 1s linear;
    width: 905px;
    padding: 28px 40px 50px;
    height: auto;
    top: 69.5%;
    left: auto;
    position: absolute;
}
.modal-cart.is-visible {
    width: 905px;
    padding: 28px 40px 50px;
    /* height: auto; */
    height: fit-content;
    /*box-shadow: 0 0 20px rgba(0,0,0,0.1);*/
    right: 0;
    transition: right .95s linear;
}
.modal-cart_head {
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}
.modal-cart_head-title {
    color: #000000;
    margin: 0 44px 0 0;
    font: 700 40px/49px 'Formular', sans-serif;
}
.modal-cart_head-tab {
    font: 700 16px/19px 'Formular', sans-serif;
    color: #566879;
    text-align: center;
    padding: 11px 17px;
    border-radius: 3px;
    transition:  all .2s linear;
}
.modal-cart_head-tab.active {
    background: #F8FAFD;
    color: #000000;
    transition:  all .2s linear;
}
.modal-cart_head-delete {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    color: #000000;
    font: 700 16px/24px 'Formular', sans-serif;
    background: transparent;
    cursor: pointer;
    margin: 0 0 0 auto;
}
.modal-cart_head-delete svg {
    margin: 0 11px 0 0;
}
.modal-cart_table {
    display: flex;
    align-items: center;
    padding: 10px 186px 10px 92px;
    background: #F8FAFD;
    border-radius: 5px;
    color: #566879;
    margin: 0 0 24px;
    font: 400 14px/20px 'Formular', sans-serif;
}
.modal-cart_tablename {
    width: 211px;
    margin: 0 12px 0 0;
}
.modal-cart_table-price {
    width: 120px;
    margin: 0 15px 0 0;
}
.modal-cart_table-quantity {
    width: 120px;
    margin: 0 20px 0 0;
}
.modal-cart_row {
    display: flex;
    align-items: center;
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid #E2E9F2;
}
.modal-cart_image {
    border: 1px solid #EEEEEE;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 20px 0 0;
    flex-shrink: 0;
}
.modal-cart_image-item {
    width: 90%;
    height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}
.modal-cart_name {
    color: #000000;
    font: 700 16px/22px 'Formular', sans-serif;
    width: 211px;
    margin: 0 12px 0 0;
}
.modal-cart_price {
    color: #000000;
    width: 120px;
    margin: 0 15px 0 0;
    font: 700 16px/22px 'Formular', sans-serif;
}
.modal-cart .base_quantity {
    margin: 0 22px 0 0;
}
.modal-cart_cost {
    color: #000000;
    font: 700 16px/22px 'Formular', sans-serif;
    width: 120px;
    margin: 0 7px 0 0;
}
.modal-cart_buttons {
    margin: 0 0 0 auto;
}
.modal-cart_control {
    display: flex;
    align-items: center;
    padding: 6px 11px;
    background: #F8FAFD;
    border-radius: 5px;
    color: #566879;
    min-width: 105px;
    margin: 5px 0;
    cursor: pointer;
    font: 500 12px/18px 'Formular', sans-serif;
}
.modal-cart_control:hover {
    color: #000;
}
.modal-cart_control svg {
    margin: 0 6px 0 0;
}
.modal-cart_control:hover path {
    fill: #000;
}
.modal-cart_total {
    background: #F8FAFD;
    border-radius: 5px;
    padding: 12px 50px 12px 10px;
    display: flex;
    align-items: center;
}
.modal-cart_total-continue {
    text-align: center;
    color: #566879;
    font: 700 16px/24px 'Formular', sans-serif;
    padding: 13px 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin: 0 10px 0 0;
    position: relative;
    background: #fff;
}
.modal-cart_total-btn {
    padding: 13px 30px;
    font: 700 16px/24px 'Formular', sans-serif;
    background: #15A524;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(21, 165, 36, 0.5);
    position: relative;
}
.modal-cart_total-btn.disabled {
    color: rgba(255, 255, 255, 0.5);
    background: #C5C5C5;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}
.modal-cart_total-txt {
    color: #566879;
    font: 400 12px/17px 'Formular', sans-serif;
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.modal-cart_total-cost {
    margin: 0 0 0 auto;
    color: #000000;
    font: 700 26px/31px 'Formular', sans-serif;
}
.modal-cart_total-cost span {
    color: #566879;
    font: 500 18px/22px 'Formular', sans-serif;
    display: block;
}
.modal-cart_attention {
    display: flex;
    align-items: flex-start;
    margin: 0 0 20px;
}
.modal-cart_attention  svg {
    margin: 0 20px 0 0;
    flex-shrink: 0;
}
.modal-cart_attention-title {
    font: 700 20px/28px 'Formular', sans-serif;
    text-transform: uppercase;
    color: #000;
}
.modal-cart_attention-txt {
    color: #566879;
    font: 400 18px/29px 'Formular', sans-serif;
}
.modal-cart_empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 50px;
}
.modal-cart_empty-img {
    width: 140px;
    margin: 0 80px 0 0;
}
.modal-cart_empty-title {
    font: 700 20px/28px 'Formular', sans-serif;
    margin: 0 0 7px;
    text-transform: uppercase;
    color: #000;
}
.modal-cart_empty-txt {
    color: #566879;
    font: 400 18px/29px 'Formular', sans-serif;
}
.cart-main_row.delayed {
	display:none;
}
#basket-item-table[filter='delayed'] .cart-main_row.delayed {
	display:flex;
}
.front_filter_wrap.catalog_filter.tires.load, div#filter_result {
    width: 1340px;
    margin: 0 auto 70px;
}
.js_select-option.disabled {
    display: none;
}
label.base_dropdown-link.calculate_select-link.js_select-option {
    width: 100%;
}
section.text-front {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1300px;
}
.modal {
    z-index: 1000;
}
.modal.is-visible#modalCallback {
    z-index: 10001;
}