

/* Start:/bitrix/templates/cooper/new_styles.css?174232416153770*/
* {
    font-family: 'Bebas Neue', sans-serif;
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --white: #FFFFFF;
    --grey: #F6F6F6;
    --dark-grey: #949494;
    --dark-blue: #212a41;
    --yellow: #ffbc00;

    --radius: 5px;
    --space: 30px;

    --footerSpace: 50px;

    --shadow: 0px 1px 16px 0px #00000059;
    --shadowSmall: 0px 1px 4px 0px #00000059;
}

body {
    background: var(--grey);
    overflow-x: hidden;
}

a {
    cursor: pointer;
}

.form_submit_btn,
.btn {
    background: var(--yellow) !important;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    border-radius: var(--radius);
    text-transform: uppercase;
    font-weight: 600;
}

.form_submit_btn:hover,
.btn:hover {
    color: var(--white) !important;
    background: var(--dark-blue) !important;
}

.form_submit_btn {
    margin-top: 20px;
    border: none;
}

.drop_holder {
    position: relative;
    pointer-events: all;
}

.drop_down {
    display: none;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% - 10px);
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 10;
}

.drop_holder.opened,
.drop_holder:hover .drop_down,
.drop_holder:focus .drop_down {
    display: block;
    opacity: 1;
}

.drop_footer {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

.spacer {
    flex: 1;
}

.mr {
    margin-right: var(--space);
}

.container {
    max-width: 1600px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

header {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    z-index: 5;
    padding-bottom: 0px;
    z-index: 30;
}

header:after{
    background-image: url(/bitrix/templates/cooper/../images/tyres.jpg);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.1;
}

.top_row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 13px 0;
    margin-top: 10px;
}

.top_row a {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-blue);
    padding-bottom: 10px;
}

.top_row a img {
    height: 15px;
    margin-right: 10px;
}

.middle_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.logo {
    margin-right: 150px;
}

.logo img {
    height: 50px;
}

.search_holder {
    flex: 1;
    position: relative;
    margin-right: var(--space);
}

.search_holder button {
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: var(--yellow);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    border: none;
}

.search_holder button img {
    height: 16px;
}

.search_holder input {
    padding: 10px 25px;
    border: none;
    border-radius: var(--radius);
    width: 100%;
    background: var(--white);
}

.search_holder input:focus,
.search_holder input:hover {
    outline: none;
    box-shadow: none;
}

.search_holder input:focus {
    background: var(--yellow);
}

.inputtext {
    background: var(--grey);
    padding: 10px 25px;
    margin-bottom: 10px;
    border-radius: var(--radius);
    border: none;
    outline: none;
}

.social_links {
    display: flex;
    align-items: center;
}

.social_links a {
    display: block;
    margin-left: 10px;
}

.social_links a img {
    height: 30px;
}

.cart {
    margin-left: var(--space);
    position: relative;
    cursor: pointer;
}

.cart img {
    height: 30px;
}

.cart span {
    position: absolute;
    top: -5px;
    right: -5px;
    border-radius: 50%;
    background: var(--yellow);
    width: 18px;
    height: 18px;
    font-size: 12px;
    line-height: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
}

.cart_items {

}

.cart_item {
    min-width: 300px;
    position: relative;
    display: flex;
    padding: 10px 0px;
    border-bottom: solid 1px var(--grey);
}

.cart_image {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background-position: center !important;
    background-size: cover !important;
    margin-right: 10px;
}

.cart_title {
    font-size: 14px;
    margin-bottom: 5px;
}

.cart_amount {
    font-size: 12px;
    color: var(--dark-blue);
    font-weight: 600;
}

.cart_remove {
    margin-left: 10px;
    height: 16px;
    width: 16px;
}

.cart_remove:hover {
    transform: rotate(90deg);
}

.cart_remove img {
    height: 16px;
}

.nav_row {
    display: flex;
    margin-top: 5px;
    padding-bottom: 13px;
}

.nav_row a {
    font-size: 14px;
    padding: 13px 19px;
    font-weight: 600;
    text-transform: lowercase;
    border-bottom: solid 1px #212a4100;
    background: var(--white);
    display: flex;
    align-items: center;
}

.nav_row a:hover {
    background: var(--yellow);
}

.nav_row a.lr {
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
}

.nav_row a.rr {
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}

.nav_row a.size_filter_btn {
    background: #212a41;
    padding: 13px 19px;
    margin: 0;
    color: var(--white);
}

.nav_row a.car_filter_btn {
    background: var(--yellow);
    padding: 13px 19px;
    margin: 0;
}

.nav_row a img {
    height: 16px;
    margin-right: 10px;
}

.order_call {
    display: inline-block;
    text-transform: uppercase;
    height: 40px;
    font-size: 12px;
    line-height: 37px;
    margin-right: var(--space);
    padding: 0 20px;
    border: solid 2px var(--dark-blue);
    border-radius: var(--radius);
    font-weight: 800;
    color: var(--dark-blue);
}

.order_call:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--white);
}

.slider {
    background-image: url(/bitrix/templates/cooper/../images/ware.jpg);
    background-position: center;
    background-size: cover;
    height: 600px;
    margin: 15px 0px;
    position: relative;
    border-radius: var(--radius);
}

.slider .heading {
    color: var(--white);
    font-weight: 800;
    font-size: 99px;
    line-height: 80px;
    letter-spacing: -9px;
    position: absolute;
    right: 10%;
    text-align: right;
    text-transform: uppercase;
    top: calc(50% - 65px);
    text-shadow: 12px -1px 16px #000;
}

.slider .heading span {
    color: var(--yellow);
}

.arrow_right,
.arrow_left {
    position: absolute;
    height: 40px;
    width: 40px;
    border-radius: var(--radius);
    background: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: var(--shadow);
    z-index: 10;
}

.arrow_right img,
.arrow_left img {
    height: 16px;
}

.arrow_right:hover,
.arrow_left:hover {
    background: var(--yellow);
    box-shadow: none;
}

.arrow_right {
    right: -20px;
    top: calc(50% - 20px);
}

.arrow_left {
    left: -20px;
    top: calc(50% - 20px);
}

.filter_block {
    min-width: 330px;
}

.filter_block .heading {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark-blue);
    padding: 15px;
    background: var(--grey);
    margin: -15px;
    margin-bottom: 15px;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.filter_row {
    display: flex;
}

.filter_row div:first-of-type {
}

.filter_row div:last-of-type {
    flex: 1;
}

.filter_row img {
    height: 172px;
    bottom: -50px;
    left: -50px;
    position: absolute;
}

.filter_row label {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.filter_row label.shortened {
    margin-left: 100px;
}

.filter_row label:last-of-type {
    margin-bottom: 0;
}

.filter_row label span {
    font-weight: 600;
    font-size: 12px;
}

.filter_row label select {
    border-radius: var(--radius);
    border: none;
    background: var(--grey);
    padding: 10px 15px;
    cursor: pointer;
}

section {
    padding: 100px 0px;
    position: relative;
}

.section_header {
    display: flex;
    justify-content: center;
}

.section_header span {
    text-transform: uppercase;
    font-weight: 600;
    background: var(--yellow);
    padding: 10px 20px;
    border-radius: var(--radius);
    margin-bottom: 25px;
}

.section_flex {
    display: flex;
    margin: 0 -15px;
}

.section_flex_short {
    width: calc(20% - 15px);
    margin: 0px 15px;
}

.section_flex_long {
    width: calc(80% - 15px);
    margin: 0px 15px;
}

.promo_text {
    font-size: 14px;
    background: var(--grey);
    padding: 20px;
    border-radius: var(--radius);
    height: 100%;
}

.popular_sizes .promo_text {
    background: var(--white);
}

.popular_sizes .beautifier {
    position: absolute;
    bottom: 0;
    left: 50px;
    opacity: 0.1;
}

.promo_text p {
    margin: 15px 0px;
    font-weight: 500;
    font-size: 14px;
    text-align: justify;
}

.promo_text p:first-of-type {
    margin-top: 0px;
}

.promo_text img {
    border-radius: var(--radius);
    max-width: 100%;
    margin: 10px auto;
    display: block;
}

.carousel .slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel .slick-slide a {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.carousel .slick-slide a img {
    max-width: 80%;
}

.carousel .slick-slide a span {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
}

.carousel .slick-slide a:hover {
    box-shadow: var(--shadow)
}

.car_brands {
    background: var(--white);
}

.car_brands .beautifier {
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 0;
    opacity: 0.2;
}

.car_brands_list {
    display: flex;
    flex-wrap: wrap;
}

.car_brands_list a {
    width: calc(16.66666666% - 8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: var(--white);
    margin: 4px;
    border-radius: var(--radius);
}

.car_brands_list a span {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
}

.car_brands_list a:hover {
    background: var(--grey);
}

.car_brands_list a img {
    max-width: 80%;
    max-height: 80%;
}

.section_btn {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.size_tabs {
    display: flex;
}

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

.size_headings a {
    text-decoration: none;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    width: 75px;
    height: 40px;
    text-align: left;
    padding: 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-grey);
}

.size_headings a.active {
    color: var(--dark-blue);
    background: var(--white);
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
}

.size_headings a:not(.active):hover {
    color: var(--yellow);
}

.size_body {
    flex: 1;
    display: flex;
    background: var(--white);
    padding: 15px;
}

.size_body div {
    display: none;
}

.size_body div.active {
    display: flex;
    flex-wrap: wrap;
}

.size_body div a {
    background: var(--grey);
    margin: 5px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.size_body div a:hover {
    color: var(--yellow);
    background: var(--white);
}

.popular_tyres {
    border-bottom: solid 1px var(--yellow);
}

.product_card {
    margin: 10px;
    padding: 15px;
    border-radius: var(--radius);
    position: relative;
    border: solid 1px #e7e7e7;
}

.product_card:hover {
    background: var(--white);
}

.product_image {
    margin-bottom: 15px;
}

.product_image img {
    max-width: 80%;
}

.product_title {
    font-weight: 600;
    font-size: 14px;
}

.product_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.product_season {
    position: absolute;
    left: 10px;
    top: 10px;
}

.product_season img {
    height: 25px;
}

.product_spikes {
    position: absolute;
    right: 10px;
    top: 10px;
}

.product_spikes img {
    height: 25px;
}

.product_chars {
    margin-top: 5px;
    font-size: 12px;
}

.product_chars span {
    font-weight: 600;
}

.blog_posts {
    background: var(--white);
    border-bottom: solid 1px var(--grey);
}

.blog_item {
    border-radius: var(--radius);
    padding: 20px;
    background: var(--grey);
    margin: 10px;
    box-shadow: var(--shadowSmall);
}

.blog_item:hover {
    box-shadow: none;
}

.blog_image {
    background-size: cover !important;
    background-position: center !important;
    height: 180px;
    border-radius: var(--radius);
    margin-bottom: 15px;
}

.blog_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog_short_desc {
    font-size: 12px;
}

.banners {
    background: var(--dark-blue);
    padding: 30px 0px;
    box-shadow: var(--shadow);
    z-index: 2;
}

.banners_list {
    display: flex;
    flex-wrap: wrap;
}

.banner_item {
    background-size: cover !important;
    background-position: center !important;
    width: 33.33333%;
    height: 0px;
    padding-bottom: 15%;
    z-index: 0;
}

.banner_item:hover {
    z-index: 1;
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.feedbacks {
    background: var(--white);
}

.feedbacks_list {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    border: solid 5px var(--yellow);
    border-radius: var(--radius);
    background: var(--white);
    position: relative;
}

.feedbacks_list .wheel {
    position: absolute;
    bottom: -50px;
    left: -50px;
}

.feedbacks_list .feedback_item {
    width: calc(50% - 30px);
    margin: 15px;
}

.feedback_name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feedback_date {
    color: var(--dark-grey);
    font-size: 14px;
    margin-bottom: 10px;
}

.feedback_content {
    background: var(--grey);
    padding: 25px;
    border-radius: var(--radius);
    font-style: italic;
    font-size: 14px;
}

footer {
    padding: 70px 0px;
    background: var(--dark-blue);
    color: var(--white);
    font-size: 14px;
    
}

.footer_block {
    display: flex;
}

.footer_logo {
    margin-right: var(--footerSpace);
}

.footer_logo img {
    height: 125px;
}

.footer_adress {
    margin-right: var(--footerSpace);
}

.footer_adress span {
    color: var(--yellow);
}

.footer_contacts {
    font-size: 16px;
    font-weight: 600;
}

.footer_contacts div a {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer_contacts div a img {
    height: 20px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.footer_links {
    display: flex;
    flex-direction: column;
    margin-right: var(--footerSpace);
}

.footer_links a:hover {
    color: var(--yellow);
}

.nav_close,
.nav_toggle,
.mobile_data {
    display: none !important;
}


.wa_float,
.top_float {
    position: fixed;
    bottom: 20px;
    height: 40px;
    width: 40px;
    border-radius: var(--radius);
    background: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: var(--shadow);
    z-index: 10;
}

.top_float {
    display: none;
}

.wa_float img,
.top_float img {
    height: 16px;
}

.wa_float {
    left: 20px;
}

.top_float {
    right: 20px;
}

.wa_float:hover,
.top_float:hover {
    background: var(--yellow);
    box-shadow: none;
}

.modal {
    display: none;
}

.modal.show {
    display: flex !important;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    background: #00000052;
    z-index: 50;
}

.modal-dialog {
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 10;
}

.modal-header {
    background: var(--dark-blue);
    color: var(--white);
    margin: -15px;
    margin-bottom: 30px;
    position: relative;
    padding:15px;
}

.modal-header button {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
    background: none;
    border: none;
    color: var(--white);
    font-size: 16px;
}

.modal-header button span {
    font-size: 33px;
}

@media (max-width: 1300px) {
    .nav_row a.car_filter_btn,
    .nav_row a.size_filter_btn,
    .nav_row a {
        padding: 10px 15px;
    }
}

@media (max-width: 1200px) {
    .footer_logo img {
        height: 50px;
    }

    .nav_row a.car_filter_btn,
    .nav_row a.size_filter_btn,
    .nav_row a {
        padding: 7px 8px;
    }

    .section_flex_long {
        width: calc(70% - 15px);
    }

    .section_flex_short {
        width: calc(30% - 15px);
    }

    .car_brands_list a {
        width: calc(33.33333% - 8px);
    }

    :root{
        --footerSpace: 30px;
    }
}

@media (max-width: 1100px) {
    .mobile_data {
        display: block !important;
        margin-bottom: 30px;
    }
    .order_call,.social_links {
        display: none;
    }

    .middle_row {
        flex-wrap: wrap;
    }

    .nav_row {
        flex-direction: column;
    }

    .nav_row a.car_filter_btn, .nav_row a.size_filter_btn, .nav_row a {
        padding: 10 20px;
        border-radius: var(--radius);
        margin-bottom: 5px;
    }

    .banners_list {
        flex-direction: column;
    }

    .banner_item {
        width: 100%;
        padding-bottom: 40%;
    }
    
    .section_flex {
        flex-direction: column;
        margin: 0px;
    }

    .section_flex_long,
    .section_flex_short {
        width: 100%;
        margin: 10px 0;
    }

    .footer_block {
        flex-wrap: wrap;
    }

    .footer_block .spacer {
        display: none;
    }

    .footer_block > div {
        margin: 16px;
        width: calc(50% - 32px);
    }

    :root{
        --space: 15px;
    }
    
    .slider {
        height: 400px;
    }
    
    .slider .heading {
        font-size: 47px;
        line-height: 50px;
        letter-spacing: -1px;
    }
    
    .top_row {
        display: none;
    }

    .logo {
        display: flex;
        margin-right: 30px;
    }

    .logo img {
        height: 40px;
    }

    .nav_toggle {
        display: flex !important;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        background: var(--yellow);
        border-radius: var(--radius);
        margin-right: 15px;
    }

    .nav_toggle img {
        height: 20px;
    }

    .nav_row {
        display: none;
    }

    .nav_row.opened {
        display: flex;
        position: fixed;
        z-index: 9999;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: var(--grey);
        padding: 50px 20px;
        overflow-y: auto;
        margin: 0;
    }

    .nav_row.opened .drop_down {
        display: block;
        opacity: 1;
        position: static;
        margin-top: 30px;
        box-shadow: none;
    }

    .nav_row.opened .spacer {
        flex: 0;
        height: 30px;
    }

    .nav_row a.size_filter_btn,
    .nav_row a.car_filter_btn {
        display: none !important;
    }

    .nav_close {
        display: block !important;
        position: absolute;
        left: 10px;
        top: 10px;
        height: 30px;
        width: 30px;
        margin: 0 !important;
        background-color: transparent !important;
    }
    
    .nav_close img {
        height: 30px !important;
    }
}

@media (max-width: 600px) {
    .feedbacks_list {
        padding: 15px;
    }

    .feedbacks_list .feedback_item {
        width: calc(100% - 30px);
    }

    .popular_sizes {
        overflow: hidden;
    }

    .popular_sizes .beautifier {
        max-width: 100%;
    }

    .size_body div a {
        font-size: 14px;
        padding: 10px;
        width: calc(50% - 10px);
    }

    .footer_block > div {
        width: calc(100% - 32px);
    }

    .slider {
        height: 250px;
    }

    .slider .heading {
        font-size: 33px;
        line-height: 32px;
        letter-spacing: -1px;
    }

    .logo {
        width: 100%;
        margin-bottom: 15px;
    }

    body {
        padding-top: 125px;
    }

    header {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        z-index: 15;
        background: var(--grey);
        padding-bottom: 10px;
        box-shadow: var(--shadow);
    }

    .filter_block {
        min-width: auto;
        width: 100%;
    }

    .container {
        overflow: hidden;
    }

    section {
        padding: 50px 0px;
    }

    .cart.drop_holder .drop_down {
        display: none !important;
    }
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.news-item-listed {
    width: 20%;
    padding: 10px;
    background: #FFF;
}

p {
    margin-bottom: 15px;
}



.spec_rad {
    margin-bottom: 5px;
}

.spec_title {
    background: #517ca6;
    color: #fff;
    font-weight: 700;
    margin-right: 10px;
    padding: 5px;
    flex-grow: 0;
    flex-shrink: 0;
}

.flex_middle {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.spec_rad a {
    color: #000;
    font-size: 14px;
    margin: 0px 5px;
    font-weight: 600;
}



.page-content .container {
    background: #fff;
}

.main_banners {
    text-align: center;
}

.main_banners {
    padding-top: 30px;
}

.main_banners2 {
    margin: 0px -35px;
}

@media (max-width: 1200px) {
    .main_banners2 {
        margin: 0px;
    }
}

.main_banners img {
    max-width: 100%;
    margin-bottom: 15px;
}


.main_page_h2 {
    font-size: 24px;
    margin: 30px 0px;
    text-transform: uppercase;
    font-weight: 600;
}

.main_page_h2 .green {
    color: #0a87bf;
}

.main_page_h2 .blue {
    color: #3f6f9e;
}

.main_page_sections {
    margin: 0px;
}

.main_page_grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0px;
}

.main_page_grid > li {
    width: 24.999%;
    padding: 10px;
    text-align: center;
    border: solid 1px #f6f6f6;
    background: #dcecf4;
}

.margined_filter {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .margined_filter {
        margin-top: auto;
    }
    
    .filter_image {
        position: absolute;
        bottom: -60px;
    }
    
    .filter_body .row div {
        width: 50%;
    }
    
    .filter_body .filter_btn {
        float: right;
    }
    
    .main_banners:not(.main_banners2) .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-left: 2px;
    }
    
    .main_banners:not(.main_banners2) .row div {
        padding: 0px;
        width: 85%;
        flex: 0 0 85%;
        margin-right: 2px;
    }
    
    .main_banners.main_banners2 .row {
        
    }
    
    .main_banners.main_banners2 .row div {
        width: 50%;
        padding: 5px;
    }
    
    .main_banners.main_banners2 .row div img {
        margin: 0px;
    }
    
    .main_models_item {
        width: 50%;
        padding: 0px;
    }
    
    .main_models_item .the_title a {
            max-width: 90%;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    background: #ecf5ff;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 14px;
    padding: 5px 0px;
    }
}

@media (max-width: 1000px) {
    .main_page_grid > li {
        width: 33.333%;
    }
}
@media (max-width: 765px) {
    .main_page_grid > li {
        width: 49.999%;
    }
}

.main_page_grid > li:hover {
    background: #fff;
}

.main_page_grid .bx_catalog_tile_img {
    width: 60%;
    padding-bottom: 20%;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
}

.main_page_grid .bx_catalog_tile_title a {
    font-size: 15px;
    color: #10508e;
    font-weight: 700;
    text-decoration: underline;
    text-transform: uppercase;
}

.main_models_item {
    text-align: center;
}

.main_models_item img {
    max-width: 90%;
}

.main_models_item .the_title a {
    max-width: 90%;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    background: #ecf5ff;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.main_models_item .the_title a:hover {
    color: #000;
    text-decoration: none;
}



.main_selected_vendors {
    text-align: center;
}

.main_selected_vendors a {
    padding: 4px 10px;
    display: inline-block;
    color: #000;
    font-weight: 600;
    transition: all .2s ease;
    margin: 3px 0px;
    background: rgba(74,144,226,.07);
    border-radius: 6px;
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.main_selected_vendors a:hover {
    text-decoration: none;
    background-color: #f3cd20;
    background-image: -o-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -moz-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -webkit-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -ms-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    -pie-background: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
}

.main_selected_vendors a.more {
    background: #f17d07;
    margin-top: 20px;
    color: #fff;
}



.blog_h2 {
    color: #000;
    border-bottom: solid 1px #22598f;
    padding-bottom: 10px;
    margin: 15px;
    width: 100%;
}

.float_btn {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 600;
}

.blog_container {
    background: #ecf5ff;
    border-radius: 0px;
    border-bottom: solid 5px #085c81;
    padding: 10px;
    padding-top: 0px;
    padding-bottom: 20px;
    position: relative;
    margin: 25px 0px;
}

.blog_container .row {
    position: relative;
}

.blog .link {
    font-size: 18px;
    color: #22598f;
    line-height: 16px;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}

.b_prev {
    font-size: 14px;
    line-height: 16px;
    text-align: justify;
}

.table-of-contents {
    float: right;
    margin: 10px;
    background: #363636;
    padding: 20px;
    border-radius: 5px;
    max-width: 300px;
}

.table-of-contents span {
    color: #FFF;
    font-size: 18px;
    display: block;
    text-align: center;
}

.table-of-contents ul {
    padding: 0px;
}

.table-of-contents a {
    color: #FFF;
    font-size: 12px;
}




.feeds_container {
    margin: 0px 15px;
    margin-top: 30px;
    padding-bottom: 30px!important;
}

.feeds_container .row {
    border-top: dashed 1px #517ca6;
    border-bottom: dashed 1px #517ca6;
    padding-bottom: 30px;
    position: relative;
}

.feed_h2 {
    color: #3f6f9e;
    border-bottom: solid 1px #419900;
    padding-bottom: 10px;
    margin: 15px;
    width: 100%;
}


.blog-comments {
    width: 100%;
}

.comment {
    margin-bottom: 30px;
}

.comment-author {
    font-size: 18px;
    color: #22598f;
    line-height: 16px;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}

.comment-author span {
    color: #000;
    font-weight: normal;
    font-size: 14px;
}

.add_edit_comment_btn {
    line-height: 40px;
    background-color: #f3cd20;
    background-image: -o-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -moz-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -webkit-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -ms-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    -pie-background: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    border-radius: 6px;
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    font-size: 15px;
    color: #000;
    display: block;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
    width: 250px;
    margin: 0 auto;
}

.add_edit_comment_btn:hover {
    color: #000!important;
    background-color: #f3cd20!important;
    -moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    text-decoration: none;
}



.news-item-listed {
    font-size: 14px;
    height: auto !Important;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.news-item-listed .n-image {
    overflow: hidden;
    background: #d6dbd6;
    padding: 20px;
    text-align: center;
    height: 150px;
    position: relative;
}

.news-item-listed .n-image a {
    height: 100%;
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
}

.news-item-listed .n-content {
    padding: 10px;
    background: #f2f5f6;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-item-listed .n-text {
    flex-grow: 1;
}

.news-item-listed .n-content a {
    margin-bottom: 10px;
    text-decoration: underline;
    display: block;
    color: #517ca6;
}

.news-item-listed .date {
    border-top: solid 1px #fff;
    background: #f2f5f6;
    color: #000;
    font-size: 14px;
    padding-top: 10px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.news-date-time {
    color: #000;
}

.n-rates {
    color: #000;
    font-size: 14px;
}

.n-rates span {
    color: #517ca6;
}

.news-item-listed {
    
}

.owl-carousel {
    margin-bottom: 30px;
}

.carousel_section {
    position: relative;
    width: 100%;
    padding: 0px 20px;
}

.carousel_section a:hover {
    text-decoration: none;
    box-shadow: none !important;
}

.season_list_h2 {
    text-align: center;
    font-weight: 900;
    font-size: 20px;
}

.owl-next,
.owl-prev {
    outline: none;
    position: absolute;
    top: calc(50% - 30px);
    font-size: 60px !important;
    line-height: 60px !important;
}

.owl-next {
    right: 0px;
}

.owl-prev {
    left: 0px;
}

.owl-next:hover,
.owl-prev:hover,
.owl-next:focus,
.owl-prev:focus {
    outline: none;
}

.carousel_section_title {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: #517ca6;
    text-decoration: none;
}

.carousel_section_image {
    position: relative;
    height: 200px;
    width: 100%;
}

.carousel_section_image img {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    max-width: 80% !important;
    max-height: 80% !important;
    margin: auto;
    width: auto !important;
}


.cooper_basket {
 
   position: absolute;
    background: #f2f5f6;
    border-radius: 8px !important;
    box-shadow: 0px 2px 0px #e2e5e6;
    background: #f3f7fd;
    box-shadow: inset 0px -3px 0px 0px rgb(255 255 255 / 50%);
    background-image: -o-linear-gradient(#f5b523 0%, #f3cd20 100%);
    background-image: -moz-linear-gradient(#f5b523 0%, #f3cd20 100%);
    background-image: -webkit-linear-gradient(#f5b523 0%, #f3cd20 100%);
    background-image: -ms-linear-gradient(#f5b523 0%, #f3cd20 100%);
    background-image: linear-gradient( #f5b523 0%, #f3cd20 100%);
    -pie-background: linear-gradient( #f5b523 0%, #f3cd20 100%);
    padding: 6px;
    width: 174px;
    font-size: 20px;
    color: #000;

    position: relative;
    /* margin-right: 81px; */
    left:39%;
    top: 44%;
   
}

.bx-hdr-profile a{
    color: black !important;
    margin-left: 0 !important;
}

.cooper_basket .bx-basket-block>.fa {
    position: absolute;
    top: 3px;
    left: 0;
    width: 30px;
    color: #000000;
    font-size: 30px;
}

.cooper_basket .bx-basket-block {
    padding-left: 40px;
    color: #000;
}

.cooper_basket .bx-basket-item-list {
    display: none;
    position: absolute;
    background: #fff;
    z-index: 90;
    left: 0px;
    right: 0px;
    box-shadow: 0 3px 10px #00000078;
}

.cooper_basket:hover .bx-basket-item-list {
    display: block;
}

.cooper_basket .cart_order_btn {
    line-height: 40px;
    background-color: #f3cd20;
    background-image: -o-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -moz-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -webkit-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -ms-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    -pie-background: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    border-radius: 6px;
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    font-size: 15px;
    color: #000;
    display: block;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
    width: 150px;
    margin: 0 auto;
    border: none;
    outline: none;
}

.cooper_basket .cart_order_btn:hover {
    color: #000!important;
    background-color: #f3cd20!important;
    -moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    border: none;
    outline: none;
}



.form_submit_btn {
    line-height: 40px;
    background-color: #f3cd20;
    background-image: -o-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -moz-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -webkit-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -ms-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    -pie-background: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    border-radius: 6px;
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    font-size: 15px;
    color: #000;
    display: block;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
    width: 150px;
    margin: 0 auto;
    border: none;
    outline: none;
}

.form_submit_btn:hover {
    color: #000!important;
    background-color: #f3cd20!important;
    -moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    border: none;
    outline: none;
}




.modal-content {
    border-radius: 0px;
}

.modal-content label {
    width: 100%;
}

.modal-content input[type=text] {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.modal-header {
    background: #0a87bf;
    color: #FFF;
    border-bottom: solid 2px #517ca6;
    border-radius: 0px;
}



.card_buy_btn {
    line-height: 30px;
    background-color: #f3cd20;
    background-image: -o-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -moz-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -webkit-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -ms-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    -pie-background: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    border-radius: 6px;
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    font-size: 15px;
    color: #000;
    display: block;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
    width: 150px;
    margin: 0 auto;
    border: none;
    outline: none;
}

.card_buy_btn:hover {
    color: #000!important;
    background-color: #f3cd20!important;
    -moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    border: none;
    outline: none;
}

.left_badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 15;
}

.right_badge {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 15;
}

.on_ware {
    font-size: 12px;
    font-weight: 600;
}

.on_ware.true {
    color: #419900;
}

.on_ware.false {
    color: #d09090;
}

.product-item-price-current {
    font-size: 16px;
}

.product-item-title {
    margin-bottom: 10px;
}

.properties_block {
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #dcecf4;
    padding: 3px;
}

.properties_block .properties_row {
    
}

.properties_block .properties_row span {
    font-weight: 600;
}

.product-item-amount-field-btn-plus, .product-item-amount-field-btn-minus {
    background: #dcecf4;
    color: #000;
}

.product-item-amount-field-btn-plus:hover, .product-item-amount-field-btn-minus:hover {
    background: #b8d6e5;
    color: #FFF;
}

.catalog-section {
    padding-top: 50px;
}


.sorter {
    background: #ecf5ff;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    align-items: center;
    margin-top: 30px;
    border: solid 1px #517ca6;
}

.sorter a {
    margin-left: 15px;
    color: #000;
    padding: 0px 15px;
    border-radius: 5px;
    background: #fff;
    font-size: 14px;
    line-height: 25px;
}

.sorter a.actived,
.sorter a:hover,
.sorter a:focus {
    background-color: #f3cd20;
    background-image: -o-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -moz-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -webkit-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -ms-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    -pie-background: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    text-decoration: none;
}

@media (max-width: 992px) {
    .container {
        max-width: 100%;
    }
    
    .sorter {
        justify-content: space-between;
    }
    
    .sorter span {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .sorter a {
        margin: 0px;
        margin-bottom: 10px;
    }
}

@media (max-width: 765px) {
    .container {
        max-width: 100%;
    }
    .sorter a {
        width: 100%;
        text-align: center;
    }
}

.buy_detail_btn {
    line-height: 35px;
    background-color: #f3cd20;
    background-image: -o-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -moz-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -webkit-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -ms-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    -pie-background: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    border-radius: 6px;
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    font-size: 15px;
    color: #000;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
    width: 200px;
    margin-top: 10px;
}

.buy_detail_btn:hover {
    color: #000!important;
    background-color: #f3cd20!important;
    -moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
}

.product-item-detail-price-current {
    color: #000;
}



.catalog-block-header {
    font-size: 24px;
    margin: 30px 0px;
    text-transform: uppercase;
    font-weight: 600;
}


#basket-root {
    margin: 50px 0px !important;
    width: auto !important;
}

.bx-soa-more-btn a {
    margin: 5px;
}




.search-page form input[type=text] {
    display: inline-block;
    border-radius: 3px;
    border: solid 1px #517ca6;
    text-indent: 10px;
    font-style: italic;
    background: #f2f5f6;
    box-shadow: inset 0 2px 5px #00000012;
    line-height: 35px;
    margin-top: 10px;
    font-size: 14px;
}

.search-page form input[type=submit] {
    line-height: 37px;
    border: none;
    background-color: #f3cd20;
    background-image: -o-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -moz-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -webkit-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: -ms-linear-gradient(-450deg,#f3cd20 0%,#f5b523 100%);
    background-image: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    -pie-background: linear-gradient(180deg,#f3cd20 0%,#f5b523 100%);
    border-radius: 6px;
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    font-size: 15px;
    color: #000;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

.search-page form input[type=submit]:hover {
    color: #000!important;
    background-color: #f3cd20!important;
    -moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), inset 0 3px 0 rgba(255, 255, 255, 0.35);
}



.empty_spacer {
    height: 50px;
}


@media (max-width: 765px) {
    footer>.container>.row>div,
    header .head_contacts,
    header .head_work,
    header .head_search,
    header .head_pay {
        margin-top: 25px;
    }
    
    .cooper_basket {
       width: 345px;
    margin: 0 auto;
    margin-top: 18px;
    position: inherit;
    }
    
    .cooper_basket .bx-basket-block{
        padding-left: 0 !important;
    }
    
    header .head_contacts a.recall_toggle{
        width: 85%;
    
        margin-left:0!important;
    }
    
    header .head_contacts {
        display: flex;
    justify-content: center;
    }
}


.bx-404-container {
    text-align: center;
    margin: 80px auto;
    display: block;
}


.time-we-recieve {
        text-transform: uppercase;
    border-top: solid 1px #085d83;
    margin-top: 15px;
    margin-bottom: -15px;
    font-weight: 600;
    padding: 5px 0px;
}

.time-we-recieve span {
    color: #f3cd20;
}

.head_phones {
    /*border-bottom: solid 1px #f2f5f6;*/
        padding-bottom: 15px;
    margin-bottom: 10px;
    display: flex;
    white-space: nowrap;
    margin-left: 27%;
}

.head_phones a {
    align-items: center;
    display: flex;
    justify-content: center;
}

.head_phones a span {
    margin: 0px 5px;
}

.head_phones a img {
    height: 20px;
}

.soa-property-container select {
        display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@media (max-width: 765px) {
    .table-of-contents {
        width: 100%;
        max-width: none;
        margin: 0px !important;
        margin-bottom: 50px;
    }
    
    .head_phones{
      
    padding-bottom: 0; 
    margin-bottom: 0; 
    flex-direction: column;
    white-space: nowrap;
   margin-left: 0px !important;
    }
}
.table-of-contents li::marker {
    display: none;
}


.news-detail article h2 {
    margin-top: 30px;
    font-size: 16px;
}

@media (max-width: 1100px) {
    header .head_contacts a {
    font-size: 18px;
}

.head_phones {
    margin-left: 115px;
}

header .head_work {
    font-size: 15px;
    margin-left: 28%;
    margin-top: 4px;
}

header .head_contacts a.recall_toggle {
    font-size: 12px;
    margin-left: 130px;
}

.cooper_basket {
    left:27%;
}

}

@media (max-width: 768px){
    
    header .head_mail {
        line-height: 54px;
    white-space: nowrap;
    
    }
    
    header .head_work {
    font-size: 11px;
    margin-left: 38%;
    margin-top: 7px;
        
    }
    
    header .head_contacts a.recall_toggle {
    font-size: 10px;
    margin-left: 96px;
    }
    
    header .head_contacts a {
    font-size: 15px;
    margin-left: 8px;
    }
    
    .head_phones {
    margin-left: 80px;
    margin-top: 4px;
    }
    
    .bx-basket-block {
    font-size: 10px;
    }
    
    .cooper_basket {
    left: 10%;
    top: 46%;
    }
    
    header .head_search input {
        margin-top:34px;
    }
    
    header .head_mail {
    line-height: 50px;
    }
    
    .cooper_basket {
        
    }
}

@media (max-width: 415px){
   header .head_search input{
       margin-top: -15px !important;
   }
   
   header .head_mail {
    font-size: 14px;
       
   }
   
   .head_phones {
       flex-direction: row;
       justify-content: center;
       padding-left: 20px;
       margin-top: -28px;
       border-bottom: solid 1px #f2f5f6;
       padding-bottom:12px;
       margin-left: 0px;
   }
   
   header .head_contacts a.recall_toggle {
    font-size: 14px;
       
   }
   
   .email_and_avito{
       display: flex;
    
       justify-content: center;
    padding-left: 12px;
   }
   
   header .avito {
       margin-left: 8px;
   }
   
   header .head_contacts {

        width: calc(100% + 30px);
    padding-bottom: 3px;
    margin-left: -15px;
    margin-right: -15px;
       
   }
    body {
        overflow-x: hidden;
    }
   
  

}

.main_page_sections {
    padding: 15px;
    background: #FFF;
}

.catalog-section {
    display: flex;
    flex-wrap: wrap;
}
.product-item-small-card > .row {
    display: flex;
    flex-wrap: wrap;
}
.product-item-small-card > .row > div {
    width: 25%;
}

.product-item-container .product-item,
.product-item-container {
    
}

.product-item {
    display: block;
    box-sizing: border-box;
    margin: 25px;
    width: auto;
    border: 1px solid transparent;
    border-radius: var(--radius);
}

h1 {
    margin: 30px 0px;
    font-size: 30px;
}

@media (max-width: 1200px) {
    .product-item-list-col-4 {
        width: 33.3333%;
    }
}

@media (max-width: 900px) {
    .product-item {
        margin: 5px;
    }
    .product-item-list-col-4 {
        width: 50%;
    }
    
    h1 {
        margin: 30px 0px;
        font-size: 24px;
    }
}

.carousel_section a {
    width: 100% !important;
}

.flexed_row {
    display: flex;
}

.half {
    width: 50%;
}

.product-item-detail-properties {
    max-width: none;
    width: 100%;
}

.product-item-detail-info-section {
    padding: 0px;
    margin-bottom: 25px;
}

.product-item-detail-tab-content {
    padding: 25px;
    background: white;
}

.col-12 .product-item-small-card > .row {
    display: flex;
    flex-wrap: wrap;
}

.row.product-item-list-col-4 {
    width: 100%;
}

.btn.product-item-detail-buy-button span {
    text-align: center;
}

@media (max-width: 900px) {
    .product-item-small-card > .row > div {
        width: 50%;
    }
}

@media (max-width: 900px) {
    .flexed_row {
        flex-wrap: wrap;
    }
    
    .flexed_row .half {
        width: 100%;
    }
    
    .flexed_row .half:nth-of-type(1) {
        margin-bottom: 30px;
    }
    
    .product-item-small-card > .row .product-item-container {
        height: 100%;
    }
    .product-item-small-card > .row .product-item-container .product-item {
        display: flex;
        flex-direction: column;
        height: calc(100% - 2px);
    }
    
    .product-item-small-card > .row .product-item-container .product-item .b_spacer {
        flex: 1;
    }
}

.bx-touch .product-item {
        padding: 5px;
    width: auto;
    background: #fff;
    margin: 1px;
}

.sticky_filter {
    display: flex;
    flex-wrap: wrap;
}

.sticky_filter.sticked {
    max-width: 1600px;
    padding: 0 15px;
    margin: 0 auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 2px;
    z-index: 20;
    justify-content: flex-end;
    pointer-events: none;
}

.sticky_filter.sticked .size_filter_btn,
.sticky_filter.sticked .car_filter_btn {
    box-shadow: var(--shadow);
}

.brand_car a {
    height: 160px;
}







.filters_block {
    display: flex;
    justify-content: space-between;
    margin: 30px 0px;
    margin-bottom: 45px;
}

.filters_block .filter_row {
    padding-bottom: 30px;
}

.filter_holder {
    width: calc(50% - 30px);
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.filter_holder .selects_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    grid-gap: 15px;
}

.filter_holder .heading {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark-blue);
    padding: 15px;
    background: var(--grey);
    margin: -15px;
    margin-bottom: 15px;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.filter_holder {
    display: flex;
}

.filter_holder div:first-of-type {
}

.filter_holder div:last-of-type {
    flex: 1;
}

.filter_holder img {
    height: 172px;
    bottom: -50px;
    left: -50px;
    position: absolute;
}

.filter_holder label {
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
    width: calc(33% - 9px);
}

.filter_holder label.shortened {
    margin-left: 100px;
}

.filter_holder label:last-of-type {
    margin-bottom: 0;
}

.filter_holder label span {
    font-weight: 600;
    font-size: 12px;
}

.filter_holder label select {
    border-radius: var(--radius);
    border: none;
    background: var(--grey);
    padding: 10px 15px;
    cursor: pointer;
}

.btn-buy {
    cursor: pointer;
}

.radio-header {
    display: block;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

@media (max-width: 1100px) {
    .filters_block {
        flex-wrap: wrap;
    }
    
    .filter_holder {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .nav_row .sticky_filter .drop_holder {
        width: 100%;
    }
}
/* End */


/* Start:/bitrix/templates/cooper/components/bitrix/sale.basket.basket.line/cooper_new/style.min.css?16902072873712*/
.bx-basket-block{position:relative;padding-bottom:5px;padding-left:20px;white-space:nowrap;font-size:12px}.bx-basket-block>.fa{position:absolute;top:3px;left:0;width:12px;color:#97a1ab}.bx-basket-block a{margin-right:10px}@media(min-width:768px){.bx-basket-fixed{position:fixed;z-index:998;overflow:hidden;padding-top:10px;width:200px;border:1px solid #f0f0f0;border-radius:1px;background:#fff;box-shadow:0 7px 10px rgba(0,0,0,0.15)}.bx-basket-fixed.top{top:10px}.bx-basket-fixed.right{right:10px}.bx-basket-fixed.bottom{bottom:10px}.bx-basket-fixed.left{left:10px}.bx-basket-fixed.bx-max-height{top:10px;bottom:10px}}@media(max-width:767px){.bx-basket-fixed{position:fixed;right:0;bottom:0;left:0;z-index:998;overflow:hidden;padding-top:10px;border:1px solid #f0f0f0;border-radius:1px;background:#fff;box-shadow:0 7px 10px rgba(0,0,0,0.15)}.bx-basket-item-list{display:none}}.bx-basket-fixed .bx-basket-block{margin-left:10px}.bx-basket-item-list{position:relative;overflow:hidden;padding-bottom:20px;border-top:1px solid #f7f7f7}.bx-opener .bx-basket-item-list{padding-bottom:75px}.bx-max-height .bx-basket-item-list{position:absolute;right:0;bottom:0;left:0}.bx-closed .bx-basket-item-list{overflow:hidden;height:20px}.bx-basket-item-list-action{position:absolute;right:0;bottom:0;left:0;z-index:120;padding:3px 0;height:20px;background:#f7f7f7;color:#4f4f4f;vertical-align:middle;text-align:center;font-size:12px;line-height:14px;cursor:pointer}.bx-basket-item-list-button-container{position:absolute;right:0;bottom:20px;left:0;padding:10px 0;border-top:1px solid #f7f7f7;background:#fff;text-align:center}.bx-basket-item-list-container{overflow-y:auto;max-height:100%}.bx-basket-item-list-item{position:relative;margin-bottom:15px;padding-top:15px;padding-right:10px;padding-left:10px;border-bottom:1px solid #f7f7f7}.bx-basket-item-list-container .bx-basket-item-list-item:last-child{margin-bottom:0;border-bottom:0}.bx-basket-item-list-item-status{margin:0 10px 20px;padding:3px;border-radius:3px;background:#ebebeb;text-align:center;white-space:normal;font-weight:bold;font-size:12px;line-height:16px}.bx-basket-item-list-item-img{position:relative;padding-bottom:5px;text-align:center}.bx-basket-item-list-item-img img{max-width:90px;height:auto;border:1px solid #e6e6e6}.bx-basket-item-list-item-name{padding-bottom:5px}.bx-basket-item-list-item-name a{font-size:13px;line-height:16px}.bx-basket-item-list-item-remove{position:absolute;top:-7px;right:10px;width:20px;height:20px;opacity:.5;cursor:pointer;transition:250ms linear all}.bx-basket-item-list-item-remove:after,.bx-basket-item-list-item-remove:before{position:absolute;top:50%;left:50%;display:block;width:10px;height:2px;border-radius:1px;background-color:#333;content:'';transform:translate(-50%,-50%)}.bx-basket-item-list-item-remove:after{-webkit-transform:translate(-50%,-50%) rotate(45deg);-moz-transform:translate(-50%,-50%) rotate(45deg);-ms-transform:translate(-50%,-50%) rotate(45deg);-o-transform:translate(-50%,-50%) rotate(45deg);transform:translate(-50%,-50%) rotate(45deg)}.bx-basket-item-list-item-remove:before{-webkit-transform:translate(-50%,-50%) rotate(135deg);-moz-transform:translate(-50%,-50%) rotate(135deg);-ms-transform:translate(-50%,-50%) rotate(135deg);-o-transform:translate(-50%,-50%) rotate(135deg);transform:translate(-50%,-50%) rotate(135deg)}.bx-basket-item-list-item-remove:hover{opacity:.7}.bx-basket-item-list-item-price-block{padding-bottom:5px;font-size:12px}.bx-basket-item-list-item-price{display:inline-block;margin-right:5px}.bx-basket-item-list-item-price-old{display:inline-block;margin-right:5px;color:#b0b0b0;text-decoration:line-through}.bx_cart_login_top .bx-hdr-profile{line-height:1.44em}
/* End */


/* Start:/bitrix/components/bitrix/form.result.new/error.css?1560284852163*/
.form-error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/bitrix/components/bitrix/form.result.new/images/icon_warn.gif);
}
/* End */
/* /bitrix/templates/cooper/new_styles.css?174232416153770 */
/* /bitrix/templates/cooper/components/bitrix/sale.basket.basket.line/cooper_new/style.min.css?16902072873712 */
/* /bitrix/components/bitrix/form.result.new/error.css?1560284852163 */
