@charset "UTF-8";

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

@font-face {
    font-family: 'Klassen';
    src: url('/media/fonts/Klassen-SemiBold.woff') format('woff');
}

body{
    display: flex;
    flex-direction: column;
}
img {
    max-width: 100%;
}

.klassen {
    font-weight: 500;
    font-size: 1.2em;
    font-family: 'Klassen', sans-serif;
    letter-spacing: normal;
    position: relative;
    padding-right: 0.8em;
}

.klassen_font {
    font-weight: 500;
    font-family: 'Klassen', sans-serif;
}

.klassen:after {
    content: '®';
    font-family: 'Roboto', sans-serif;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.7em;
}

h1 {
    font-weight: 900;
    font-size: 36px;
}

html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

a, body, h1, h2, h3, h4, h5, p {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* FLEX */

/* flexbox libruary */

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.justify-content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.align-content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.align-content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.align-content-center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.align-content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.align-content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.gap-10 {
    gap: 10px;
}

* {
    box-sizing: border-box;
}

button {
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.red {
    color: red;
}

.center {
    text-align: center !important;
}

.right {
    text-align: right !important;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
}

.container_fluid {
    padding-left: 15px;
    padding-right: 15px;
}

ul, li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a, a:hover, a:active {
    color: inherit;
    text-decoration: none;
}

.input_wrap p {
    margin-bottom: 10px;
}

.hidden {
    display: none !important;
}

.btn-xs {
    display: inline-block;
    cursor: pointer;
    font-size: 10px;
    font-weight: 400;
    height: 28px;
    line-height: 28px;
    padding-left: 15px;
    padding-right: 15px;
    letter-spacing: 0.5px;
    transition: color .2s linear, background-color .2s linear;
    text-align: center;
}

.btn-md {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    height: 36px;
    line-height: 36px;
    padding-left: 17px;
    padding-right: 17px;
    letter-spacing: 0.5px;
    transition: color .2s linear, background-color .2s linear;
    gap: 7px;
}

.btn-md svg {
    height: 16px;
    width: 16px;
}

.btn {
    display: inline-block;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400 !important;
    height: 41px;
    line-height: 41px;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 0.5px;
    transition: color .3s linear, background-color .3s linear, border-color .3s linear;
    text-align: center;
}

.btn svg {
    height: 24px;
    width: 24px;
}

.btn_t_w {
    border: 1px solid #fff;
    color: #fff;
}

.btn_t_w:hover {
    border: 1px solid #fff;
    color: #ccc;
}

.btn_w_b {
    background: #fff;
    border: 1px solid #000;
    color: #000;
}

.btn_w_b:hover {
    border-color: #000;
    background: #000;
    color: #fff;
}

.btn_w_b svg {
    fill: #000;
    transition: fill .3s linear;
}

.btn_w_b:hover svg {
    fill: #fff;
}


.btn_b_w {
    background: #000;
    border: 1px solid #000;
    color: #fff;
}

.btn_b_w:hover {
    border-color: #000;
    background: #fff;
    color: #000;
}

.btn_b_w svg {
    fill: #fff;
    transition: fill .3s linear;
}

.btn_b_w:hover svg {
    fill: #000;
}


.dropdown_wrap {
    position: absolute;
    top: 55px;
    opacity: 0;
    height: auto;
    background: #fff;
    transition: opacity 0.3s;
    visibility: hidden;
    z-index: 100;
}

.dropdown_active .dropdown_wrap {
    opacity: 1;
    visibility: visible;
}

.dropdown_wrap a {
    display: block;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-transition: color .3s ease, background-color .3s ease;
    transition: color .3s ease, background-color .3s ease;
    letter-spacing: 0.7px;
    padding: 0 20px;
    line-height: 40px;
}

.dropdown_wrap a:hover {
    color: #000 !important;
    background: #fff !important;
}

.dropdown_inner {
    max-width: 1000px;
    margin: auto;
}

.dropdown:hover .dropdown_wrap {
    opacity: 1;
    visibility: visible;
}

header {
    background: #000;
    position: relative;
    z-index: 4;
    display: none;
}

.header_text {
    display: block;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    line-height: 40px;
    font-size: 12px;
    letter-spacing: 1.5px;
}

.header_lang {
    display: flex;
    align-items: center;
}

.header_lang a {
    font-family: "Helvetica Neue", sans-serif;
    color: #8a8a90;
    line-height: 40px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 16px;
}

.header_lang_separator {
    display: block;
    width: 1px;
    height: 12px;
    background: #68686c;
}

.header_lang a.active {
    color: #fff;
}

.main_menu {
    position: relative;
    z-index: 4;
    border-bottom: 1px solid #eee;
}

.main_menu .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.main_menu_mobile_btn {
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main_menu_mobile_btn span {
    display: block;
    margin-bottom: 8px;
    height: 2px;
    background: #000;
}

.main_menu_mobile_btn span:last-child {
    margin: 0;
}

.main_menu_logo {
    margin: auto 0;
}

.main_menu_logo a {
    display: inline-block;
}

.main_menu_logo svg {
    fill: #000;
    height: 20px;
}

.main_menu_logo span {
    display: block;
    text-align: right;
    font-size: 12px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 5px;
}

.main_menu_menu {
    margin: auto;
    display: none;
}

.main_menu_menu a.dropdown {
    padding-right: 30px;
}

.main_menu_menu > ul {
    display: flex;
}

.main_menu_menu > ul > li > a {
    font-family: "Helvetica Neue", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 40px;
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    font-weight: 900;
    -webkit-transition: color .3s ease, background-color .3s ease;
    transition: color .3s ease, background-color .3s ease;
}

.dropdown:hover a, .main_menu_menu > ul > li > a:hover {
    color: #fff;
    background: #000;
}

.main_menu_cart {
    display: flex;
    width: 30px;
}

.main_menu_cart_btn {
    margin: auto 0 auto auto;
    cursor: pointer;
    position: relative;
}

.main_menu_cart_btn svg {
    height: 25px;
    fill: #000;
}

.main_menu_cart_btn span {
    position: absolute;
    right: -10px;
    top: -5px;
    width: 20px;
    line-height: 20px;
    color: #fff;
    background: #000;
    border-radius: 10px;
    font-size: 10px;
    text-align: center;
}

.main_menu_search {
    display: none;
}

.main_menu_search_btn {
    margin: auto;
    cursor: pointer;
}

.main_menu_search_btn svg {
    height: 25px;
}

.home_main_banner {
    margin-top: -150px;
}

.home_main_banner .inner {
    height: 700px;
    position: relative;
    background-size: cover;
    overflow: hidden;
}

.home_main_banner .inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.home_main_banner_bg {
    height: 100%;
    background: #000;
    background-size: 50%;
}


.home_main_banner figure, .home_main_banner picture {
    margin: 0;
    height: 100%;
}

.home_main_banner video, .home_main_banner picture img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

figure {
    margin: 0;
}

.home_main_banner_content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
}

.home_main_banner_content h1 {
    font-family: "Helvetica Neue", sans-serif;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
    line-height: 1;
}

.home_main_banner_content h2 {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1;
    letter-spacing: 2px;

}

.home_main_banner_content a {
    width: 200px;
    margin: 0 auto;
}

.best_sellers {
    padding: 50px 0;
    background: #fff;
}

.home_latest {
    padding-top: 50px;
    background: #fff;
}

.home_makes {
    padding-top: 50px;
    background: #fff;
}

.home_categories {
    padding-top: 50px;
    background: #fff;
}

.home_categories:last-child {
    padding-bottom: 50px;
}

.section-title {
    color: #000;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
}

.home_latest_heading {
    display: flex;
    justify-content: space-between;
}

.home_latest_heading a {
    letter-spacing: 0.5px;
    color: #666;
    display: flex;
}

.home_latest_heading a svg {
    fill: #666;
    height: 15px;
}

.home_latest_heading span {
    flex: 1;
    margin-right: 10px;
}

.products_list {
    display: flex;
    flex-wrap: wrap;
    border-left: 1px solid #f3f3f3;
    margin-left: 1px;
}

.products_list_item {
    position: relative;
    width: 100%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    border-left: 1px solid transparent;
    margin-left: -1px;
    transition: border-color .3s;
}

.products_list_item:hover {
    border-color: #ddd;
}

.add_to_cart {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    line-height: 40px;
    background: #000;
    color: #fff;
    font-size: 13px;
    transition: bottom .7s;
    text-align: center;
    font-family: "Helvetica Neue", sans-serif;
    text-transform: uppercase;
}

.products_list_item:hover .add_to_cart {
    bottom: 0;
}

.products_list_item_inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    transition: filter .3s;
    margin-left: -15px;
    margin-right: -15px;
}

.products_list_item_image {
    width: 100%;
    padding-top: 65%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    margin-bottom: 15px;
}

.products_list_item_image img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    -webkit-transition: all .3s ease;
}

.products_list_item_sku {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
    color: #fff;
    background: #000000b0;
    font-size: 14px;
}

.products_list_item_title {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.3;
    color: #131c20;
    font-weight: 500;
}

.products_list_item_code {
    color: #59666e;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 10px;
}


.products_list_item_price {
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    margin-top: auto;
}

.content {
    flex: 1;
    background: #f8f8f8;
}

footer {
    border-top: 1px solid #eee;
    background: #f8f8f8;
}

.footer_social {
    padding: 30px 0;
    background: #3e3e3e;
}

.footer_social ul {
    display: flex;
    justify-content: center;
}

footer ul svg {
    margin-left: 15px;
    margin-right: 15px;
    fill: #fff;
}

.footer_copywrite {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    padding: 30px 0;
    background: #fff;
}

.home_info {
    padding: 50px 0;
    background: #f5f5f5;

}

.home_info .inner {
    display: flex;
}

.home_info_item {
    width: 33.333%;
    display: flex;
}

.home_info_item svg {
    height: 50px;
    margin-right: 40px;
}

.home_info_item_inner {
    flex: 1;
}

.home_info_item_title {
    font-family: "Helvetica Neue", sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 10px;
}

.home_info_item_description {
    line-height: 1.6;
    font-size: 16px;
}

.not_found {
    padding: 50px 0;
    text-align: center;
}

.not_found h1 {
    font-size: 80px;
}

.not_found h2 {
    font-size: 18px;
}

.carousel-main .flickity-viewport {
    background: rgb(211, 211, 211);
    overflow: hidden;
}

.carousel-main .flickity-viewport:after {
    content: '';
    position: absolute;
    left: -45%;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 45%;
    background-image: linear-gradient(to left, rgba(251, 251, 251, .05), rgba(251, 251, 251, .3), rgba(251, 251, 251, .6), rgba(251, 251, 251, .3), rgba(251, 251, 251, .05));
    background-image: -moz-linear-gradient(to left, rgba(251, 251, 251, .05), rgba(251, 251, 251, .3), rgba(251, 251, 251, .6), rgba(251, 251, 251, .3), rgba(251, 251, 251, .05));
    background-image: -webkit-linear-gradient(to left, rgba(251, 251, 251, .05), rgba(251, 251, 251, .3), rgba(251, 251, 251, .6), rgba(251, 251, 251, .3), rgba(251, 251, 251, .05));
    animation: loading 1s infinite;
    z-index: 2;
}

.flickity-slider {
    z-index: 3;
}

.flickity-button {
    z-index: 4;
}

@keyframes loading {
    0% {
        left: -45%;
    }
    100% {
        left: 100%;
    }
}

.product_image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product_image img {
    position: relative;
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 3;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.product_image img.flickity-lazyloaded,
.product_image img.flickity-lazyerror {
    opacity: 1;
}


.product {
    margin-top: 30px;
    background: #fff;
    padding-bottom: 30px;
}

.product h1 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}


.product_price {
    font-size: 22px;
    margin-bottom: 2px;
    font-weight: 500;
}

.product_sku {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.product_price_description {
    font-size: 13px;
    margin-bottom: 15px;
    color: #777;
}

.product_option_group {
    margin-bottom: 15px;
}

.product_option_group .error {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: red;
}

.product_option_group_title {
    text-transform: uppercase;
    font-size: 18px;
    font-family: "Helvetica Neue", sans-serif;
    margin-bottom: 15px;
    font-weight: 800;
}

.product_options {
    display: flex;
}

.product_option label {
    display: block;
    font-size: 12px;
    line-height: 30px;
    background: #fff;
    color: #000;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 10px;
    cursor: pointer;
    border: 1px solid #000;
}

.product_option input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.product_option input:checked + label {
    background: #000;
    color: #fff;
    border-color: #000;
}

.product_option_group_option {
    width: 70px;
    line-height: 50px;
    text-align: center;
    color: #000;
    border: 1px solid #000;
    margin-right: 10px;
    cursor: pointer;
}

.product_option_group_option.active {
    color: #fff;
    background: #000;
}

.product_cart_btn {
    line-height: 50px;
    width: 100%;
    max-width: 350px;
    background: #000;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: 400;
}

.product_description {
    margin-top: 30px;
    background: #fff;
    font-size: 16px;
    line-height: 1.8;
}

.product_description * {
    font-size: 14px;
}

.product_description h2 {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 600;
}

.product_description_title {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 15px;
}

.category_main {
    margin-bottom: 20px;
}

.category_main .inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category_main h1 {
    font-size: 24px;
}

.catalog_categories_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category_main .catalog_categories_list {
    justify-content: start;
}

.category_item {
    position: relative;
    width: calc(50% - 5px);
    border: 1px solid #eee;
    background: #fff;
    transition: border-color .3s;
}

.category_item:hover {
    border-color: #ddd;
}

.category_item_inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.category_item_image {
    padding-top: 100%;
    position: relative;
}

.category_item_image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.category_item_title {
    flex: 1;
    font-size: 15px;
    text-align: center;
    -webkit-transition: color .3s ease, background-color .3s ease;
    transition: color .3s ease, background-color .3s ease;
    padding-top: 15px;
}

.catalog_results {
    padding-bottom: 50px;
}

.catalog_results .inner {
    display: flex;
}

.catalog_filter {
    width: 300px;
    margin-right: 30px;
}

.catalog_products {
    flex: 1;
    border-left: 1px solid #f3f3f3;
}

.product_option_green {
    font-weight: 400;
    color: green;
    margin-bottom: 15px;
}

.product_option_red {
    font-weight: 400;
    color: red;
    margin-bottom: 15px;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999999999;
    background: #ffffff8c url(/media/images/loading.gif) center center no-repeat;
}

.product_option_info {
    padding: 15px;
    margin-bottom: 15px;
    background: #26bda51a;
    color: #000;
    width: 300px;
    font-size: 12px;
}

.cart_box {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    z-index: 999999;
}

.cart_box.active {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.cart_box-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
}

.cart_box-inner {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    right: 0;
    left: auto;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    will-change: transform;
    padding: 15px;
}

.cart_box-inner.active {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.cart_box-close {
    position: absolute;
    right: 20px;
    top: 20px;
    height: 25px;
    width: 25px;
    background: url(/media/images/icons/close.svg);
    cursor: pointer;
}

.cart_box-titles {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    padding-right: 20px;
    margin-right: 20px;
    color: #000;
    line-height: 1;
}

.cart_products {
    overflow-x: auto;
    height: calc(100vh - 180px);
}

.cart_product {
    position: relative;
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.cart_product_image img {
    height: 60px;
}

.cart_product_info {
    margin-left: 15px;
    flex: 1;
}

.cart_product_title {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
}

.btn_checkout {
    position: absolute;
    bottom: 15px;
    right: 15px;
    left: 15px;
    display: block;
    line-height: 50px;
    background: #000;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: 400;
}

.btn_checkout:hover {
    color: #fff;
}

.cart_product_sku {
    margin-bottom: 5px;
    font-size: 12px;
}

.cart_product_option {
    margin-bottom: 5px;
}

.cart_product_prices {
    margin-left: auto;
}

.cart_product_price_single {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    text-align: right;
}

.cart_product_price_total {
    font-weight: 600;
    text-align: right;
}

.cart_product_remove {
    position: absolute;
    right: 0;
    bottom: 10px;
    cursor: pointer;
    font-size: 12px;
    color: red;
}

.cart_total {
    text-align: right;
    margin: 15px 0;
}

.cart_total span {
    margin-left: 10px;
    font-size: 18px;
    font-weight: 600;
}

.product_pay_methods {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
}

.product_pay_methods img {
    height: 20px;
    margin-right: 10px;
}

.product_info p {
    margin-bottom: 10px;
}

.product_info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.checkout {
    padding: 30px 0;
    background: #fff;
    flex: 1;
}
.checkout h1{
    font-size: 28px;
    margin-bottom: 20px;
}
.checkout_form {
    flex: 1;
}

.checkout_form label.checkbox {
    margin-bottom: 0;
}

.checkout_totals {
    width: 500px;
    max-width: 100%;
}

.checkout_totals_title {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #000;
    line-height: 1;
}

.checkout_totals_totals {
    display: flex;
    margin-bottom: 15px;
}

.checkout_totals_totals span {
    margin-left: auto;
}

.checkout_totals_total_price {
    border-top: 1px solid #eee;
    padding-top: 10px;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
}

.checkout_form_submit {
    display: block;
    line-height: 50px;
    background: #000;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: 400;
    width: 100%;
}

input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

.checkout textarea, .checkout select, .checkout input:not([type='radio']) {
    border: none;
    padding: 0 15px;
    height: 46px;
    display: block;
    outline: none;
    font-size: 14px;
    background: #f5f5f5;
    border-bottom: 1px solid #aaa;
    width: 100%;
}

.input_wrap {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.checkout_form_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

label.checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    height: 20px;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

label.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    display: none;
}

label.checkbox span {
    font-size: 14px;
    color: #000;
    display: block;
}

label.checkbox span {
    font-size: 14px;
    color: #000;
    display: block;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #bbb;
    border-radius: 50%;
}

label.checkbox input:checked ~ .checkmark {
    background-color: #000;
}

.checkbox input:checked + label{
    color: red;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

label.checkbox .checkmark:after {
    left: 7px;
    top: 4px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


label.checkbox input:checked ~ .checkmark:after {
    display: block;
}

.input_wrap label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
}

.input_radio p {
    margin-bottom: 10px;
}

.shipping_text, .payment_text {
    margin-top: 8px;
    margin-bottom: 20px;
    margin-left: 30px;
    font-size: 13px;
}

.shipping_text p {
    margin-bottom: 0;
    line-height: 1.5;
}

.checkout_form_customer, .checkout_form_shipping, .checkout_form_payment {
    margin-bottom: 20px;
}

.checkout_form_shipping_method {
    margin-bottom: 15px;
}

.checkout_form_shipping_method:last-child {
    margin-bottom: 0;
}

.error_wrap input, .error_wrap select {
    border-bottom-color: red !important;
}

.error_wrap .error {
    color: red;
    position: absolute;
    font-size: 10px;
    bottom: -13px;
}

.checkout_form_shipping .error, .checkout_form_payment .error {
    color: red;
    font-size: 10px;
}

.mobile_menu_active {
    overflow: hidden;
}

.mobile_menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    z-index: 998;
    background: #fff;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0s ease 0.5s;
    transition: opacity 0.5s ease, -webkit-transform 0s ease 0.5s;
    -o-transition: transform 0s ease 0.5s, opacity 0.5s ease;
    transition: transform 0s ease 0.5s, opacity 0.5s ease;
    transition: transform 0s ease 0.5s, opacity 0.5s ease, -webkit-transform 0s ease 0.5s;
}

.mobile_menu_active .mobile_menu {
    transform: translate3D(-100%, 0, 1px);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0s ease;
    transition: opacity 0.5s ease, -webkit-transform 0s ease;
    -o-transition: transform 0s ease, opacity 0.5s ease;
    transition: transform 0s ease, opacity 0.5s ease;
    transition: transform 0s ease, opacity 0.5s ease, -webkit-transform 0s ease;
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    opacity: 1;
}

.mobile_dropdown_wrap {
    height: 0;
    overflow: hidden;
}

.mobile_dropdown.active .mobile_dropdown_wrap {
    height: auto;
}


.mobile_menu_inner {
    padding: 60px 15px;
    overflow-x: auto;
    height: 100vh;
}

.mobile_menu_inner ul a {
    font-size: 18px;
    padding: 20px 0 20px 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.mobile_dropdown_inner ul a {
    padding-left: 40px;
}

.mobile_dropdown > a:after {
    content: '';
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    transform: rotate(-45deg);
    height: 9px;
    width: 9px;
    transition: transform 0.3s;
    margin-right: 10px;
}

.mobile_dropdown.active > a:after {
    transform: rotate(45deg);
}

.mobile_dropdown > a span {
    margin-right: auto;
    display: block;
}

.mobile_menu_close {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
}

.mobile_menu_close:before, .mobile_menu_close:after {
    content: '';
    display: block;
    position: absolute;
    left: 15px;
    top: -3px;
    height: 38px;
    width: 2px;
    background-color: #000;
}

.mobile_menu_close:before {
    transform: rotate(45deg);
}

.mobile_menu_close:after {
    transform: rotate(-45deg);
}

.mobile_menu_lang {
    position: absolute;
    top: 14px;
    right: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.mobile_menu_lang a {
    padding-left: 10px;
}

.mobile_menu_lang a.active {
    font-weight: 600;
}


.makes__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.makes__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(50% - 5px);
    border: 1px solid #eee;
    padding: 15px;
    color: #000;
    transition: border-color .3s;
}

.makes__item:hover {
    border: 1px solid #ddd;
}

.makes__item.active {
    background: #000;
    color: #fff;
}

.makes__item.active [class^=make-logo__] {
    color: #fff;
}

.makes__item img {
    width: 80px;
    height: 80px;
    margin: auto;
}

.make-item__name {
    font-size: 15px;
    text-align: center;
}

.section_search {
    position: relative;
    padding: 70px 0;
}

.section_search p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.section_search .container {
    position: relative;
    z-index: 2;
}

.section_search .input_wrap {
    margin-bottom: 0;
}


.section_search_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.section_search_background:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .4) 0, rgba(0, 0, 0, .1) 48.44%, rgba(0, 0, 0, .4) 100%);
    z-index: 2;
}

.section_search_background figure {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.section_search_background figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section_search_wrap {
    position: relative;
}

.section_search_wrap .button_wrap {
    position: absolute;
    right: 1px;
    top: 1px;
}

.input_wrap input {
    height: 55px;
    border: 1px solid #ccc;
    font-size: 16px;
    outline: none;
    width: 100%;
    color: #343434;
    background: #fff;
    line-height: 1;
    padding: 10px 15px;
}


.section_search_btn {
    display: flex;
    height: 53px;
    width: 53px;
    background: transparent;
}

.section_search_btn svg {
    width: 20px;
    height: 20px;
    fill: #555;
    margin: auto;
}

.section_search_wrap input {
    padding-right: 55px;
}

.section_search_min {
    padding: 20px 0;
}

.category_selected_filters {

}

.category_selected_filters .inner {
    margin-bottom: 20px;
}

.category_filters {
    margin-bottom: 20px;
}


.category_filters_row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.category_filters_row:last-child {
    margin-bottom: 0;
}

.product_parts {
    margin-bottom: 50px;
}

.page {
    padding: 30px 0;
}

.page h1 {
    margin-bottom: 30px;
}

.page h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.page h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.page p {
    margin-bottom: 10px;
    font-size: 16px;
}
.page a {
    font-weight: 500;
    color: #2d64d2;
    cursor: pointer;
    text-decoration: underline;
}
.contacts {
    text-align: center;
}

.contacts .container {
    max-width: 900px;
}

.product_images {
    margin-bottom: 20px;
}
.product_images .carousel-nav {
    width: 100%;
    overflow: hidden;
    margin-top: 5px;
}
.carousel-nav .product_image_nav {
    width: 80px;
    height: 80px;
    margin-right: 5px;
}

.carousel-nav .product_image_nav img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product_stock {
    margin-bottom: 10px;
    font-weight: 500;
}

.product_stock_in_stock {
    color: #338700;
}

.product_stock_out_stock {
    color: darkred;
}

.main_menu_phone {
    display: none;
}

.main_menu_phone > a {
    display: flex;
    align-items: center;
    font-weight: 900;
    color: #000;
}

.main_menu_phone > a span:first-child {
    font-size: 12px;
    font-weight: 400;
    margin-right: 10px;
    width: 50px;
}

/* Modal */


.modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    max-height: 100vh;

}

.modal-active, .mobile-menu__active {
    overflow: hidden;
    padding-right: 17px;
    top: 0;
    position: fixed;
    width: 100vw;
}

.modal__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.modal__container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    z-index: 2;
    width: 400px;
}

.modal__container_xs {
    width: 400px;
}

.modal__container_md {
    width: 600px;
}

.modal__container_xl {
    width: 960px;
}

.modal__close {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    z-index: 1;
}

.modal__close svg {
    height: 24px;
    width: 24px;
    margin: auto;
    fill: #666;
}

.modal__header {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    padding: 15px 70px 15px 15px;
    border-bottom: 1px solid #eee;
}

.modal__container_xs .modal__header {
    border-bottom: none;
}

.modal__error {
    line-height: 1.4;
}

.modal__content {
    padding: 15px;
    max-height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal__container_xs .modal__content {
    padding-top: 10px;
    max-height: calc(100vh - 130px);
}

.modal__content p {
    color: #151515;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Modal */

#checkout_pay_wrap{
    margin-bottom: 15px;
}

.form-response, .form-success, .form-error {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.3;
}

.form-error {
    color: #df1b41;
}

#payment-form .form-error {
    margin-top: 15px;
}

.footer_menu {
    padding-bottom: 30px;
    background: #3e3e3e;
}

.footer_menu ul{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer_menu ul:not(:last-child){
    margin-bottom: 15px;
}
.footer_menu a{
    color: #fff;
}

@media print {
    .no-print {
        display: none !important;
    }
    .flickity-prev-next-button {
        display: none !important;
    }
}