@charset "UTF-8";

@font-face {
    font-family: 'Klassen';
    src: url('/media/fonts/Klassen-SemiBold.woff') format('woff');
}


.klassen_font {
    font-weight: 500;
    font-size: 1.2em;
    font-family: 'Klassen', sans-serif;
    letter-spacing: normal;
    position: relative;
    padding-right: 0.8em;
    white-space: nowrap;
}

.klassen {
    font-weight: 500;
    font-size: 1.2em;
    font-family: 'Klassen', sans-serif;
    letter-spacing: normal;
    position: relative;
    padding-right: 0.8em;
    white-space: nowrap;
}

.klassen:after {
    content: '®';
    font-family: 'Roboto', sans-serif;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.7em;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 1;
}

html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

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;
}

hr {
    border-top: 1px solid #ddd;
}

/* FLEX */

/* flexbox libruary */

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
}

.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;
}

.gap-5 {
    gap: 5px;
}

* {
    box-sizing: border-box;
}

button {
    border: none;
}

.red {
    color: red;
}

.center {
    text-align: center !important;
}

.right {
    text-align: right !important;
}

.italic {
    font-style: italic;
}

img {
    max-width: 100%;
}

.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;
}

.hidden {
    display: none !important;
}


button, button:active, button:focus {
    outline: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1039;
    transition: top .3s;
}

.header-hidden {
    top: -100px;
}

.header-fixed header, .header_white header {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    transition: background-color 0.3s;
}

.header_no_shadow header {
    box-shadow: none;
}

header .inner {
    display: flex;
    align-items: center;
    position: relative;
}

.header_center {
    flex: 1;
}

.header_center_top {
    display: flex;
    align-items: center;
    height: 60px;
}

.header_center_bottom ul {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 20px;
}

.header_center_bottom ul li a {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 40px;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

.header_white .header_center_bottom ul li a, .header-fixed .header_center_bottom ul li a {
    color: #000;
}

.header_center_bottom ul li a svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.header_white .header_center_bottom ul li a svg, .header-fixed .header_center_bottom ul li a svg {
    fill: #000;
}

.header_center_bottom ul li a span {
    display: none;
}

.header_logo {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.header_logo_lc {
    display: none;
    flex-direction: column;
    line-height: 1;
    gap: 5px;
    color: #fff !important;
    font-size: 8px;
    margin-top: -10px;
}

.header_logo_lc img:last-child {
    display: none;
}


.header_logo svg {
    height: 20px;
    width: 154px;
    fill: #fff;
}

.header-fixed header .header_logo svg, .header_white header .header_logo svg {
    fill: #000;
}

.header-fixed .header_logo_lc, .header_white .header_logo_lc {
    color: #000 !important;
}
.header-fixed .header_logo_lc img, .header_white .header_logo_lc img{
    display: none;
}
.header-fixed .header_logo_lc img:last-child, .header_white .header_logo_lc img:last-child{
    display: block;
}
.header_burger {
    text-align: center;
    cursor: pointer;
    width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.header_burger span {
    width: 40px;
    height: 2px;
    background: #fff;
    display: block;
    position: relative;
    transition: transform .3s, margin-bottom .3s, background-color .3s;
}

.header-fixed header .header_burger span, .header_white header .header_burger span {
    background: #000;
}

.active.header_burger span {
    background: #fff !important;
}

.header_burger span:first-child {
    margin-bottom: 6px;
}

.header_burger:hover span:first-child {
    margin-bottom: 10px;
}

.header_burger.active span:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-bottom: 0 !important;
}

.header_burger.active span:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 2px;
}

.header_phone {
    display: none;
}

.header_phone > a {
    display: flex;
    align-items: center;
    font-weight: 900;
    color: #fff;
}

.header_phone > a span:first-child {
    font-size: 12px;
    font-weight: 400;
    margin-right: 10px;
    width: 50px;
}

.header-fixed .header_phone > a, .header_white .header_phone > a {
    color: #000;
}

.header_phone_arrow {
    display: flex;
    padding-right: 15px;
    cursor: pointer;
    line-height: 80px;
}

.header_phone_arrow svg {
    user-select: none;
    width: 20px;
    height: 20px;
    fill: #fff;
}

.header-fixed .header_phone_arrow svg, .header_white .header_phone_arrow svg {
    fill: #000;
}

.header_phone_list {
    position: absolute;
    top: 60px;
    right: 0;
    width: 320px;
    font-size: 16px;
    cursor: default;
    visibility: hidden;
    z-index: -1;
    filter: drop-shadow(0 4px 48px rgba(72, 75, 76, 0.3));
    border-radius: 4px;

}

.header_phone_list-inner {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.3s cubic-bezier(0.12, 0.77, 0.16, 0.93), transform 0.3s cubic-bezier(0.12, 0.77, 0.16, 0.93);
    padding: 30px;
    background-color: #fff;
}


.contact-item-text {
    font-weight: 500;
    color: #4c4c4c;
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-item-link {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
    color: #000;
    font-weight: 700;
    font-size: 16px;
}

.contact-item-link span {
    display: block;
    font-weight: 400;
    font-size: 13px;
    margin-right: 5px;
    width: 50px;
    color: #333;
}


.header_phone_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5001;
}


.header_search {
    padding-left: 60px;
}

.header_search_btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.header_search_btn svg {
    fill: #fff;
    height: 24px;
    width: 24px;
}

.header-fixed header .header_search_btn svg, .header_white header .header_search_btn svg {
    fill: #000;
}

.mobile-box {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 99999;
}

.mobile-box.active {
    opacity: 1;
    right: 0;
}

.mobile-box-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
}

.mobile-box-inner {
    left: 0;
    background: #333;
    width: 576px;
    max-width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 100px 20px 20px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s linear;
}

.mobile-box-inner.active {
    transform: translateX(0);
}

.mobile-box-inner-wrap {
    overflow-x: auto;
    height: 100%;
}

.mobile-box-titles {
    display: flex;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.mobile-box-titles-login {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #ccc;
    color: #000;
}

.mobile-box-titles-register {
    color: #999;
}

.mobile-box .input_wrap {
    margin-bottom: 15px;
}

.mobile-box .input_wrap .button {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    border-radius: 5px !important;
}

.mobile-box-social {
    margin-top: 30px;
    text-align: center;
}

.mobile-box-lang {
    display: flex;
    position: absolute;
    right: 15px;
    top: 0;
}

.mobile-box-lang a {
    line-height: 60px;
    padding-right: 15px;
    font-size: 18px;
    color: #fff;
}

.mobile-box-lang p {
    line-height: 60px;
    padding-right: 15px;
    font-size: 18px;
    color: #fff;
    opacity: 0.6;
}

.mobile-box-menu {
    margin-bottom: 50px;
}

.mobile-box-menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
    color: #a1a1a1;
    cursor: pointer;
    opacity: 1;
    transition: opacity .5s;
}

.mobile-box-menu-link:hover {
    color: #a1a1a1;
    opacity: 0.7;
}

.mobile-box-menu-link svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.header_search_wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition: width .3s;
}

.header_search_wrap input {
    height: 100%;
    border: 1px solid #fff;
    padding: 0 10px;
    border-radius: unset;
}

.header_search_wrap .search_close {
    display: block;
    width: 60px;
}

.active .header_search_wrap {
    width: 100%;
    max-width: calc(100% - 120px);
    right: 60px;
    border-left: 1px solid #ebe7e7;
    border-right: 1px solid #ebe7e7;
}

.active .header_search_btn {
    background: #fff;
}

.header_search_btn svg:last-child {
    display: none;
}

.active .header_search_btn svg {
    fill: #000;
}

.active .header_search_btn svg:last-child {
    display: block;
}

.active .header_search_btn svg:first-child {
    display: none;
}

input, select, textarea {
    background: #fff;
    border: 1px solid #ddd;
    font-size: 16px;
    padding: 15px;
    width: 100%;
    height: 55px;
    border-radius: 5px;
    color: #000;
    transition: border-color .3s;
}

input:hover, input:active, input:focus {
    box-shadow: none !important;
    outline: none !important;
}

.home_philosophy {
    padding: 50px 0;
}

.section_content {
    flex: 1;
    margin-left: 50px;
}


@keyframes arrow {
    0% {
        opacity: 0
    }
    40% {
        opacity: 1
    }
    80% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
    0% {
        opacity: 0
    }
    40% {
        opacity: 1
    }
    80% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

.home_philosophy .section_title {
    font-weight: 900;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    text-align: center;
}

.home_philosophy .section_title:before {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: #c8a461;
    position: absolute;
    left: 50%;
    margin-left: -50px;
    bottom: -20px;
}

.home_philosophy_text {
    max-width: 930px;
    margin: auto;
    text-align: center;
}

.home_philosophy_text * {
    font-size: 18px;
    line-height: 1.6;
}

.home_philosophy_text a {
    text-align: center;
}

.home_philosophy_text a * {
    display: block;
    line-height: 1;
}

.home_philosophy_text strong {
    text-transform: uppercase;
    margin-bottom: 5px;
}

.home_philosophy_text a span {
    font-weight: 400;
    font-size: 12px;
    color: #333;
}

strong {
    font-weight: 900;
}

b {
    font-weight: 700;
}

.home_category {
    position: relative;
    box-shadow: #00000038 0 20px 40px -20px;
}

.home_category_1 .home_category_bg img {
    object-position: bottom;
}

.home_category_bg {
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.home_category_bg img {
    object-fit: cover;
    width: 100%;
    object-position: center;
    height: 100%;
}

.home_category:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #0000005e;
}

.home_category .container_fluid {
    position: relative;
    z-index: 2;
    height: 400px;
}

.home_category .inner {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.home_category .inner h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.home_category .inner h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.4;
    max-width: 1000px;
    font-weight: 400;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-sizing: border-box;
    transition: .2s;
    cursor: pointer;
    border: 1px solid transparent;
    user-select: none;
    text-decoration: none !important;
}

.btn--xxl {
    height: 55px;
    padding: 0 30px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    gap: 10px;
    letter-spacing: 1.5px;
}

.btn--xxl svg {
    height: 24px;
    width: 24px;
}

.btn--xl {
    height: 44px;
    border-radius: 5px;
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 500;
    gap: 5px;
}

.btn--xl svg {
    height: 24px;
    width: 24px;
    margin-left: -4px;
}

.btn--md {
    height: 35px;
    line-height: 35px;
    padding: 0 25px;
    font-size: 14px;
    font-weight: 400;
}

.btn--md svg {
    height: 22px;
    width: 22px;
    margin-left: -4px;
}

.btn--xs {
    height: 29px;
    padding: 0 15px;
    font-size: 13px;
    font-weight: 400;
    gap: 5px;
}

.btn--xs svg {
    height: 18px;
    width: 18px;
}

.btn--xxs {
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    border-radius: 4px;
    padding: 0 7px;
    font-weight: 400;
    gap: 5px;
}

.btn--xxs svg {
    height: 14px;
    width: 14px;
}

.btn--red {
    background: #c00303;
    color: #fff !important;
}

.btn--red:hover {
    background: #910202;
}

.btn--grey {
    background: #333;
    color: #fff !important;
}

.btn--grey:hover {
    background: #555;
}

.btn--grey svg {
    fill: #fff;
}

.btn--wide {
    width: 100%;
}

.btn--white {
    background-color: #fff;
    border: 1px solid #cbcbcb;
    color: #373737;
}

.btn--white:hover, .btn--white:active {
    background-color: #f5f5f5;
}

.btn--transparent {
    background-color: transparent;
    border: 1px solid #cbcbcb;
    color: #373737;
}

.btn--transparent:hover {
    background-color: transparent;
    border: 1px solid #ccc;
    color: #444;
}

.btn--transparent svg {
    fill: #555;
}

.btn--transparent:hover svg {
    fill: #000;
}

.btn--transparent-white {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn--transparent-white:hover {
    border-color: #ddd;
    color: #ddd;
}

.btn--blue {
    background-color: #2060df;
    border-color: #2060df;
    color: #f6f9fe;
}

.btn--blue:hover {
    background-color: #2857d8;
    border-color: #2857d8;
    color: #f6f9fe;
}

.btn--blue svg {
    fill: #fff;
}

.btn--green {
    background-color: #27cc47;
    border-color: #27cc47;
    color: #f6f9fe;
}

.btn--green:hover {
    background-color: #1c9833;
    border-color: #1c9833;
    color: #f6f9fe;
}

.btn--green svg {
    fill: #fff;
}

.btn--wa {
    background: #24cc63;
    color: #fff !important;
}

.btn--wa:hover {
    background: #01a449;
}

.btn--tg {
    background: #0084c6;
    color: #fff !important;
}

.btn--tg:hover {
    background: #01699d;
}

.btn-wide {
    width: 100%;
}
.btn--rounded-full {
    border-radius: 50px;
}
.btn--xs.btn--rounded {
    border-radius: 5px;
}
.btn--md.btn--rounded {
    border-radius: 8px;
}
.btn--xl.btn--rounded {
    border-radius: 10px;
}

/* BUTTONS */

.home_offers {
    background: #f8f8f8;
    padding-top: 50px;
    padding-bottom: 50px;
}

.home_offers .section_title {
    font-weight: 900;
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    text-align: center;
}

.home_offers .section_title:before {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: #c8a461;
    position: absolute;
    left: 50%;
    margin-left: -50px;
    bottom: -20px;
}

.owl-nav.disabled {
    display: none;
}

.owl-prev, .owl-next {
    background: #333;
    color: #fff;
    font-size: 26px;
    padding: 0 10px;
}

.owl-stage-outer {
    overflow: hidden;
}

.owl-stage {
    display: flex;
}

.home_offers .owl-dots {
    display: flex;
}

.home_offers .owl-dot {
    height: 30px;
    flex: 1 0 0;
    margin-right: 1px;
    cursor: pointer;
}

.home_offers .owl-dot:before {
    content: '';
    position: relative;
    display: block;
    z-index: 2;
    height: 5px;
    width: 100%;
    background: #000;
}

.home_offers .owl-dot.active:before {
    background: #c8a461;
}

.offer_item {
    display: block;
}

.offer_item_image {
    width: 100%;
    padding-top: 66.6666%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    height: 100%;
    background-position: center !important;
    position: relative;
}

.offer_item_image img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.offer_item_info {
    border: 1px solid #ffffff1f;
    border-top: none;
    padding: 20px 10px;
}

.offer_item_prices {
    flex: 1;
    text-align: right;
    font-size: 12px;
}

.offer_item_price span {
    font-size: 10px;
}

.offer_item_make, .offer_item_model, .offer_item_sub_model {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 150px;
}

.offer_item_make {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.offer_item_model {
    font-size: 12px;
    margin-bottom: 5px;
}

.offer_item_sub_model {
    font-size: 10px;
}

.home_team {
    position: relative;
}

.home_team_item {
    position: relative;
    background-size: cover !important;
    background-position: top center !important;
}

.home_team_item:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #0000005e;
}

.home_team_item .container_fluid {
    position: relative;
    z-index: 2;
    height: 400px;
}

.home_team_item .inner {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.home_team_item h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 900;
    opacity: 0.7;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.3;
}

.home_team_item h3 {
    color: #ffffffcc;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-size: 15px;
    text-transform: uppercase;
}

.home_team_item .inner h3 {
    line-height: 1.8;
    letter-spacing: 0;
    color: #fff;
}

.home_team .section_title {
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px;
    color: #fff;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 900;
    z-index: 2;
}

.owl-prev, .owl-next {
    position: absolute;
    top: calc(50% - 25px);
    background: #333333b3;
    color: #fff;
    font-size: 26px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    transition: background-color .3s linear;
}

.owl-prev:hover, .owl-next:hover {
    background: #c8a461;
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
}

.owl-prev.disabled, .owl-next.disabled {
    display: none !important;
}


footer {
    background: #f8f8f8;
    padding-top: 50px;
}

footer .container .inner {
    display: flex;
    flex-direction: column-reverse;
}

footer p {
    color: #fff;
    font-size: 10px;
    margin-bottom: 25px;
    line-height: 1.5;
}

footer p:last-child {
    margin: 0;
}

footer ul svg {
    margin-left: 15px;
    margin-right: 15px;
    fill: #fff;
    height: 24px;
    width: 24px;
}

.footer_social {
    padding: 30px 0;
    background: #3e3e3e;
}

.footer_social ul {
    display: flex;
    justify-content: center;
}

.footer_main {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #353535;
}

.footer_copywrite {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    padding: 30px 0;
    background: #222;
}

.footer_links {
    flex: 1;
    margin-bottom: 20px;
}

.footer_links-group {
    margin-bottom: 40px;
}

.footer_links-group:last-child {
    margin-right: 0;
}

.footer_links-group a {
    color: #fff;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
}

.footer_links-group a:last-child {
    margin-bottom: 0;
}

.footer_links-group a span {
    margin-right: 10px;
    color: #9e9e9e;
}

.footer_links-group-title {
    color: #a1a1a1 !important;
    margin-bottom: 20px !important;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
}

.footer_newsletter-title {
    color: #a1a1a1;
    margin-bottom: 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
}

.news_list .section_title {
    font-weight: 900;
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    text-align: center;
}

.news_list .section_title:before {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: #c8a461;
    position: absolute;
    bottom: -20px;
    left: calc(50% - 50px);
}

.news_list_item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    border: 1px solid #f3f3f3;
    color: #000;
}
.news_list_item:hover {
    text-decoration: none !important;
    color: #000 !important;

}
.news_list_item_image {
    width: 100%;
    height: calc(60% - 30px);
}

.news_list_item_image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.news_list_item_content {
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fff;
    padding: 20px 20px 50px;
    position: relative;
    color: #000;
}


.news_list_item_date {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.news_list_item_preview {
    margin-top: auto;
}

.news_list_item_title {
    font-weight: 900;
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: uppercase;
}

.news_list_item_description {
    font-size: 13px;
    line-height: 1.5;
}

.news_list_item_arrow {
    position: absolute;
    right: 15px;
    bottom: 15px;
    transition: right 0.3s;
}

.news_list_item_arrow svg {
    width: 30px;
    height: 30px;
}


.news_list_item:hover .news_list_item_arrow {
    right: 30px;
}

.contact_form {
    background: #f8f8f8;
    padding: 50px 0;
}

.contact_form .container {
    max-width: 1000px;
}

.contact_form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.contact_form h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.input_wrap {
    margin-bottom: 18px;
}

textarea {
    font-family: 'Roboto', sans-serif;
    height: 100px;
    resize: none;
    line-height: 1.7;
}

.mobile-box-submenu-wrap {
    max-height: 0;
    padding: 0 30px;
    transition: max-height 0.3s;
    overflow: hidden;
}

.mobile-box-submenu-inner h2 {
    display: none;
}

.mobile-box-menu-link-wrap.active .mobile-box-submenu-wrap {
    max-height: 1000px;
}

.mobile-box-menu-link-wrap {
    position: relative;
}

.mobile-box-menu-link-wrap .mobile-box-menu-link:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #fff;
    transition: transform 0.3s ease-in-out;
    transform: rotate(90deg);
}

.mobile-box-menu-link-wrap.active a:after {
    transform: rotate(0);
}

.no-overflow {
    overflow: hidden !important;
}

.header_menu {
    display: none;
}

.header_menu ul {
    display: flex;
    align-items: center;
}

.header_menu a {
    color: #fff;
    font-weight: 500;
    line-height: 60px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 15px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.2px;
}
.header_menu a svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}
.header-fixed .header_menu a, .header_white .header_menu a {
    color: #000;
}
.header-fixed .header_menu a svg, .header_white .header_menu a svg{
    fill: #000;
}

.contact_social {
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact_social svg {
    height: 25px;
    width: 25px;
    margin: 0 10px;
}

.not_found .inner {
    padding: 120px 0;
}

.not_found h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.not_found p {
    font-size: 16px;
    margin-bottom: 20px;
}

.contact_main {
    padding-top: 120px;
    padding-bottom: 50px;
}

.contact_main .team_contacts_group_item {
    margin: 0 auto;
}

.contact_form .inner {
    width: 600px;
    margin: auto;
    max-width: 100%;
    padding: 15px;
    background: #fff;
}

.submenu-link-main {
    font-size: 20px !important;
    color: #f8f8f8 !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center;
}

.mobile-box-contacts-item {
    margin-bottom: 20px;
}

.mobile-box-contacts-item p {
    font-weight: 500;
    color: #a1a1a1;
    margin-bottom: 10px;
}

.mobile-box-contacts-item a {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.mobile-box-contacts-social {
    display: flex;
    gap: 10px;
}

.mobile-box-contacts-social a {
    width: 40px;
    height: 40px;
    display: flex;
    border: 1px solid #666;
    transition: opacity 0.3s;
}

.mobile-box-contacts-social a:hover {
    opacity: 0.7;
}

.mobile-box-contacts-item ul a svg {
    margin: auto;
    height: 20px;
    width: 20px;
    fill: #fff;
}

.mobile-box-contacts-item img {
    height: 20px;
}


.vehicles_old {
    padding-top: 50px;
    padding-bottom: 100px;
}

.stock {
    padding-top: 120px;
    padding-bottom: 100px;
}


.page_title, .page h1 {
    font-weight: 900;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.page h1 b {
    font-weight: 900;
}

.page_title svg {
    margin-left: 10px;
}

.page_legend {
    width: 1200px;
    max-width: 100%;
    margin: 30px auto;
}

.page_legend p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 300;
    text-align: center;
}

.page_legend a {
    font-weight: 900;
}

.cars_list_item {
    width: 100%;
}

.cars_list_item_images {
    width: 100%;
    padding-top: 66.6666%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

.cars_list_item_images 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;
}

.cars_list_item_id {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
    color: #fff;
    background: #000000b0;
    font-size: 14px;
}

.cars_list_item_label {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.69);
    display: flex;
    align-items: center;
    justify-content: center;
    color: red;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 30px;
}

.car_badges {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    position: absolute;
    left: 0;
    top: 0;
}

.car_badge {
    padding: 5px 10px;
    font-size: 12px;
    text-align: center;
}

.car_badge_blue {
    color: #fff;
    background: #0078d6;
}

.car_badge_red {
    color: #fff;
    background: #bc000b;
}

.cars_list_item_title {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.cars_list_item_based {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 300;
}


.cars_list_item_price {
    margin-bottom: 9px;
    display: flex;
    justify-content: space-between;
}

.cars_list_item_price span {
    font-size: 16px;
}

.cars_list_item_price span:last-child {
    font-size: 18px;
    color: red;

}


.cars_list_item_price_brutto span:last-child {
    color: #333 !important;
    font-weight: 400 !important;
    font-size: 16px;
}


.cars_list_item_price span:first-child {
    font-weight: 300;
}

.cars_list_item_price span:last-child {
    font-weight: 900;
    text-transform: uppercase;
}
.cars_list_item_prices {
    height: 50px;
}
.cars_list_item_prices *:last-child {
    margin-bottom: 0;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination a, .pagination p, .pagination div {
    line-height: 40px;
    width: 40px;
    text-align: center;
    font-weight: 900;
}

.pagination p {
    color: #fff;
    background: #000;
    border-radius: 20px;
}

.pagination_prev {
    margin-right: 30px;
}

.pagination_next {
    margin-left: 30px;
}

.pagination_prev, .pagination_next {
    display: flex;
    align-items: center;
    width: auto !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.error_wrap {
    position: relative;
}

.error_wrap * {
    border-color: red !important;
}

.error {
    position: absolute;
    bottom: -15px;
    font-size: 12px !important;;
    color: red !important;
    z-index: 1;
    line-height: 1 !important;;
    width: 100%;
    display: block;
    text-align: left;
    font-weight: 400 !important;;
}

.api-error {
    margin-top: 15px;
    margin-bottom: 15px;
    color: white;
    background: red;
    padding: 15px;
    font-size: 15px;
    max-width: 600px;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999999999;
    background: rgba(255, 255, 255, 0.37) url(/media/images/loading.gif) center center no-repeat;
    background-size: 80px;
}

.vehicles .section_title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.vehicles_marks_item {
    display: inline-block;
    width: 33.333%;
}

.vehicles_marks_item svg {
    display: block;
    width: 50px;
    height: 50px;
    fill: #000;
    margin: auto auto 10px auto;
}

.vehicles_marks_item .inner {
    text-align: center;
    margin: 0 5px 10px 5px;
}

.vehicles_marks_item span {
    display: inline-flex;
    justify-content: center;
    width: auto;
    transition: color .3s ease;
    font-size: 18px;
    line-height: 1.2;
    margin: auto;
}

.vehicles_marks_item_name {
    font-size: 14px;
}


.vehicle-logo-klassen:before {
    content: "\e95d"
}

.vehicle-logo-mercedes-benz:before {
    content: "\e9bf"
}

.vehicle-logo-audi:before {
    content: "\e958"
}

.vehicle-logo-bmw:before {
    content: "\e961";
}

.vehicle-logo-land-rover:before {
    content: "\e9b2"
}

.vehicle-logo-rolls-royce:before {
    content: "\e9d9"
}

.vehicle-logo-bentley:before {
    content: "\e95f"
}

.vehicle-logo-lexus:before {
    content: "\e9b3"
}

.vehicle-logo-volkswagen:before {
    content: "\e9f4"
}

.vehicle-logo-toyota:before {
    content: "\e9ec";
}

.vehicle-logo-cadillac:before {
    content: "\e969"
}

.vehicles_logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 30px;
}

.vehicle_main_image {
    height: 600px;
    position: relative;
}

.vehicle_main_image:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #00000099;
}


.vehicle_main img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.vehicle_main video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.vehicle_main .inner {
    position: relative;
}

.vehicle_main_info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    padding: 120px 10px 100px 10px;
    display: flex;
    flex-direction: column;
}

.vehicle_main_titles {
    margin: auto;
    text-align: center;
}
.vehicle_main_label {
    background: red;
    margin: 0 auto 15px auto;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.vehicle_main_titles_stock {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.vehicle_main_titles_stock_date {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #cdff59;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicle_main_titles_based {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}

.vehicle_main_titles_text {
    display: block;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vehicle_main h1 {
    font-size: 32px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.cars_list_item_info {
    flex: 1;
    padding: 15px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cars_list_item_inner {
    display: flex;
    flex-direction: column;
    background: #fff;
    height: 100%;
}

.vehicle_main_link {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin-top: auto;
    letter-spacing: 0.2em;
    padding: 10px;
    cursor: pointer;
    transition: color .3s;
}

.vehicle_main_link:hover {
    color: #c8a461;
}

.vehicle_main_links {
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    z-index: 9;
    display: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 35px;
}

.vehicle_main_request {
    position: relative;
}

.vehicle_code {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
    margin-top: 20px;
}

.vehicle_prices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    right: 10px;
    top: 100px;
    padding: 15px;
    background: #ffffff;
    border-radius: 5px;
}

.vehicle_price {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    text-align: right;
}

.vehicle_price span {
    font-size: 12px;
    margin-right: 10px;
}

.vehicle_price_netto b {
    color: red;
}

.vehicle_price_brutto {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    opacity: 0.9;
}

i {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
}

.vehicle_overview {
    padding-top: 50px;
}

.vehicle_section_title {
    font-size: 24px;
    color: #000;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 40px;
    text-align: center;
}


.vehicle_overview_item {
    margin-bottom: 20px;
    display: flex;
}

.vehicle_overview_item div:first-child {
    text-transform: uppercase;
    margin-bottom: 10px;
    width: 50%;
    font-weight: 700;
    text-align: right;
    margin-right: 10px;
}

.vehicle_overview_item div:last-child {
    text-transform: uppercase;
    margin-bottom: 10px;
    width: 50%;
    font-weight: 300;
    margin-left: 10px;
}

.vehicle_main_links_fixed {
    position: fixed;
    top: 100px;
    width: 100%;
}

.vehicle_photos {
    padding-top: 50px;
    position: relative;
}

.vehicle_photos img {
    height: 300px;
    object-fit: cover;

}

.section_video {
    padding-top: 50px;
    position: relative;
}

.section_video .container .inner {
    position: relative;
    overflow: hidden;
}

.section_video .iframe {
    cursor: pointer;
    width: 100%;
}

.section_video .kl_iframe {
    cursor: pointer;
    width: 100%;
}

.section_video .kl_iframe iframe {
    left: 0;
    z-index: -1;
}

.section_video .kl_iframe iframe.active {
    z-index: 111;
}


.section_video .iframe_play_btn {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    background: #0000005e;
}

.section_video .iframe_play_btn svg {
    width: 64px;
    height: 64px;
    margin: auto;
    fill: #fff;
}

.section_video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 111;
}

.section_video img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.section_video .container .inner img {
    width: 100%;
    height: 100%;
}

/* fade in image when loaded */
.carousel-cell-image {
    transition: opacity 0.4s;
    opacity: 0;
}

.carousel-cell-image.flickity-lazyloaded,
.carousel-cell-image.flickity-lazyerror {
    opacity: 1;
}

.vehicle_efficiency {
    padding: 50px 0;
    background: #f8f8f8;
}

.vehicle_equipment {
    padding: 50px 0;
    background: #f8f8f8;

}

.vehicle_efficiency_item {
    text-align: center;
    margin-bottom: 20px;
}

.vehicle_efficiency_item span {
    display: block;
    margin-top: 20px;
    font-weight: 500;
    font-size: 16px;
}

.vehicle_equipment .vehicle_equipment_group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
}

.vehicle_equipment .vehicle_equipment_group div {
    margin-bottom: 15px;
    font-size: 16px;
    width: 100%;
}

.more_btn {
    text-align: center;
    background: #f8f8f8;
    padding-top: 20px;
}

.vehicle_equipment .vehicle_section_title, .vehicle_description .vehicle_section_title {
    text-align: left;
}

.vehicle_description {
    padding-top: 50px;
}

.vehicle_description_inner {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}

.vehicle_description_inner p {
    margin-bottom: 15px;
}

.vehicle_description_inner a {
    font-weight: 700;
}

.vehicle_description_inner ul {
    padding-left: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}

.vehicle_description_inner li {
    list-style-type: disc;
    margin-bottom: 15px;
}

.vehicle_panorama {
    padding-top: 50px;
}

.vehicle_panorama_item {
    position: relative;
    height: 300px;
    min-height: 300px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    margin-bottom: 15px !important;
}

.vehicle_panorama_item:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #0000005e url(/media/images/icons/360.svg) no-repeat center;
}

.vehicle_panorama_btn {
    display: flex;
    justify-content: center;
    position: absolute;
    top: calc(50% + 80px);
    width: 100%;
    text-align: center;
}

.vehicle_efficiency_inner p {
    font-size: 12px;
}

.vehicle_request {
    background: #fff;
    padding: 100px 0;
    text-align: center;
}

.vehicle_request .btn {
    width: 300px;
}

/* KLASSEN MODAL */

.klassen_modal_close {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
}

.klassen_modal_close svg {
    margin: auto;
    height: 20px;
    width: 20px;
}

.klassen_modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    line-height: 1.2;
}

.klassen_modal_content {
    display: flex;
    flex-direction: column;
    width: 600px;
    position: relative;
    padding: 40px 15px;
    background: #fff;
    z-index: 3;
    margin: auto;
    max-width: 100%;
    max-height: calc(100vh - 80px);
    overflow: hidden;
}

.klassen_modal_inner {
    overflow-x: auto;
}

.klassen_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.27);
    z-index: 2;
}

.klassen_modal_inner h4 {
    font-weight: 900;
    font-size: 17px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.klassen_modal_inner h2 {
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.klassen_modal textarea {
    height: 120px;
}

.klassen_modal_buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* KLASSEN MODAL */

/* POPUP */

.popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    line-height: 1.2;
}

.popup_content {
    display: flex;
    flex-direction: column;
    width: 400px;
    position: relative;
    padding: 10px;
    background: #fff;
    z-index: 3;
    margin: 30px auto;
    max-width: 100%;
    max-height: calc(100vh - 60px);
    overflow: hidden;
}

.popup_inner {
    overflow-x: auto;
}

.popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.27);
    z-index: 2;
}

.popup_inner h4 {
    font-weight: 900;
    font-size: 17px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.popup_inner h2 {
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.popup textarea {
    height: 120px;
}

.popup_buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* KLASSEN MODAL */
.success {
    margin-top: 15px;
    background: green;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
}

.footer_newsletter {
    position: relative;
    margin: 0 auto 20px;
    max-width: 100%;
}

.footer_newsletter .success {
    position: absolute;
    right: 15px;
}

.footer_newsletter .error {
    color: red;
}

.footer_newsletter .error_wrap input {
    border-color: red;
}

.footer_newsletter .footer_newsletter_form {
    display: flex;
}


.footer_newsletter .container {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.footer_newsletter h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}

.footer_newsletter input {
    height: 50px;
    border: 1px solid #fff;
    padding: 0 20px;
    flex: 1;
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
    background: transparent;
    color: #fff;
    border-right: unset;
}

.footer_newsletter input::placeholder {
    text-transform: uppercase;
    font-size: 14px;
}

.newsletter_form {
    display: flex;
}

.newsletter_form_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    border: 1px solid #fff !important;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.vehicles_list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.vehicles_old .vehicles_filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;

}

.vehicles_filters a {
    display: inline-block;
    position: relative;
    padding: 10px 15px;
    border-radius: 3px;
    background: #e5e5e5;
    font-size: 12px;
}

.vehicles_filters a.active {
    background: #333;
    color: #fff;
}

.vehicles .sub_title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.news {
    padding-top: 120px;
    min-height: calc(100vh - 550px);
}

.news_filters {
    margin-bottom: 15px;
}

.news_filters .swiper-slide {
    width: auto;
    flex-shrink: 0;
}
.service_main {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.news_filters_sub {
    margin-bottom: 30px;
}

.service_main .inner {
    z-index: 2;
    position: relative;
    height: 100%;
    min-height: 450px;
}

.service_main figure, .service_main picture {
    margin: 0;
    height: 100%;
}

.service_main .inner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #0000005e;
    z-index: 3;
}

.service_main .inner:after {
    content: '';
    position: absolute;
    left: 50%;
    width: 1px;
    height: 50px;
    bottom: 50px;
    background: #fff;
    z-index: 3;
}

.service_main video, .service_main picture img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.service_main_bg {
    height: 100%;
    background: #000 url(/media/images/klassen_logo_white.svg) no-repeat;
    background-position: center;
    background-size: 50%;
}

.service_main_content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
    padding: 10px 10px 130px;
    display: flex;
    flex-direction: column;
}

.service_main h1 {
    margin-top: auto;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    font-size: 32px;
}

.service_main h2 {
    font-size: 26px;
    color: #fff;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service_main h2 span {
    font-size: 13px;
    text-transform: lowercase;
    font-weight: 400;
    line-height: 1;
}

.service_main h3 {
    text-align: center;
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
}

.service_main h4 {
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 26px;
}

.service_main h4 span {
    font-size: 13px;
    text-transform: lowercase;
    font-weight: 400;
    line-height: 1;
}

.service_text, .service_steps {
    padding: 50px 0 !important;
    min-height: auto !important;
    background: #f8f8f8;
}

.service_text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
    text-align: center;
}

.service_text a {
    font-weight: 700;
}

.service_request {
    margin-bottom: 50px;
}

.service_vehicles {
    padding-bottom: 50px;
    background: #fff;
}

.service_vehicles .section_sub_title {
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
}

.service_section_title_xl {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    word-break: break-word;
    margin-bottom: 50px;
    margin-top: 0;
    line-height: 1.4;
}

.service_section_title_md {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-align: center;
}

.service_photos {
    padding: 0 !important;
}

.service_empty {
    padding-bottom: 50px;
}

.loading_vehicles {
    width: 100%;
    text-align: center;
    padding: 30px;
}

.loading_vehicles:before {
    content: '';
    display: block;
    width: 100px;
    height: 50px;
    margin: 0 auto 10px auto;
    background: url(/media/images/loading.gif) no-repeat center;
    background-size: 100%;
}

.mobile-box-inner-wrap::-webkit-scrollbar {
    width: 5px;
    right: -10px;
    margin-left: -5px;
}

.mobile-box-inner-wrap::-webkit-scrollbar-track {
    background: #444;
}

.mobile-box-inner-wrap::-webkit-scrollbar-thumb {
    background: #222;
}

.mobile-box-inner-wrap::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.team_contacts {
    padding: 40px 0;
}

.team_contacts h2 {
    text-align: center;
    line-height: 1.4;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team_contacts h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.team_contacts h4 {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.team_contacts_group_contact {
    display: flex;
    justify-content: space-between;
}

.team_contacts_group_contact div:last-child {
    text-align: right;
}

.team_contacts_group_contact:not(:last-child) {
    margin-bottom: 20px;
}

.team_contacts_group_contact a {
    font-weight: 900;
}

.team_contacts_group_contact div:first-child {
    width: 125px;
}

.team_contacts_groups {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 100px;
    margin-bottom: 50px;
}

.team_contacts_group_item {
    width: 100%;
}

.page .team_contacts_group_item {
    margin: 0;
    width: 100%;
}

.page .team_contacts_groups {
    width: 100%;
    max-width: 350px;
    margin: auto;
}

.team_contacts_group_name {
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
    line-height: 1;
}

.team_contacts_group_position {
    font-weight: 400;
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1;
}

.team_contacts_group_location {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1;
}

.team_contacts_group_location span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service_categories {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #fff;
}

.service_categories .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service_category {
    width: 100%;
    margin-bottom: 30px;
}

.model_category .service_category_inner {
    position: relative;
}

.model_category .service_category_image {
    aspect-ratio: 5 / 3;
}

.model_category .service_category_image:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #0000005e;
    z-index: 3;
}

.model_category .service_category_info {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: 21;
}

.model_category .service_category_title {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.service_category_title_1 {
    color: #fff;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 30px;
}


.service_category_title_2 {
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service_category_title_3 {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 26px;
}

.service_category_title_3 i {
    text-transform: lowercase;
}


.service_category_image {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.service_category.model_category .service_category_title {
    padding: 50px;
}

.model_category .service_category_image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.service_category_title {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    text-align: center;
}

.service_category_type {
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
    position: absolute;
    left: 0;
    z-index: 2;
    top: 0;
    color: #fff;
    background: #ff0000d4;
    padding: 10px;
}

.service_category_title span {
    display: block;
    text-transform: lowercase;
    font-size: 12px;
    font-weight: 400;
}

.service_category_title_b_r {
    margin-left: 10px;
    border-radius: 4px;
    background: #222;
    color: #fff;
    letter-spacing: normal;
    font-weight: 900;
    padding: 0 7px;
    line-height: 26px;
    font-size: 14px;
}

.service_category_title_b_r ~ .service_category_title_r_w {
    margin-left: -3px;
}

.service_category_title_r_w {
    margin-left: 10px;
    border-left: 1px solid #f8f8f8;
    border-radius: 4px;
    background: red;
    color: #fff;
    letter-spacing: normal;
    font-style: italic;
    font-weight: 900;
    padding: 0 7px;
    line-height: 26px;
    font-size: 14px;
}

.service_video {

}

.service_video .inner {
    z-index: 2;
    position: relative;
    height: 56.52vw;
    overflow: hidden;
}

.service_video .video-container {
    height: 100%;
    width: 100%;
}

.service_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.service_video .inner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #0000005e;
    z-index: 3;
}

.home_menu {
    display: none;
    margin-top: 30px;
}

.home_menu .inner {
    display: flex;
    justify-content: center;
}

.home_menu a {
    margin-right: 3px;
    margin-left: 3px;
}

.section_title_left {
    font-size: 30px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 40px;
    letter-spacing: 0.7px;
    word-break: break-word;
}

.section_title_left i {
    text-transform: lowercase;
}

.section_text_left {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: left !important;
}

.left {
    text-align: left !important;
}

.service_step {
    width: 100%;
    padding: 45px;
    background: #333;
    color: #fff;
    min-width: 320px;
    margin-bottom: 20px;
}

.service_steps .inner {
    justify-content: center;
}

.service_steps .inner h2 {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
}

.service_steps h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
}

.service_steps p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.service_main_btn {
    width: 250px;
    margin: 0 auto;
}

.scroll_to {
    cursor: pointer;
}

.block {
    display: block !important;
}

.qr1 img, .qr2 img {
    height: 100px;
}

.kl_armored {
    height: auto;
}

.kl_armored img {
    min-height: 400px;
}

.kl_armored .inner:after {
    display: none;
}

.kl_armored .service_main_content {
    padding-bottom: 100px;
    padding-top: 120px;
}

.kl_titles *, .kl_protection * {
    text-align: left !important;
}

.kl_protection {
    margin-top: auto;
}

.kl_btn {
    position: absolute;
    bottom: 40px;
    text-align: center;
    left: 0;
    right: 0;
}

.beforeAfter img {
    max-width: unset;
    background: #fff;
}

.kl_before_after {
    padding: 100px 0;
}

.kl_before_after .container {
    padding: 0;
}

.color_white {
    color: #fff;
}

.kl_features {
    padding: 50px 0 0;
}

.kl_features_title, .kl_features_image {
    width: 50%;
}

.kl_features_title {
    word-break: break-word;
    padding: 30px;
    font-size: 18px;
    color: #000;
    text-align: center;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.kl_pr_level {
    background: #211f20;
    padding: 100px 0;
}

.kl_pr_level .inner div {
    height: 155px;
    overflow-x: auto;
    overflow-y: hidden;
}

.kl_pr_level img {
    height: 100%;
    max-width: none;
}

.kl_in_dev {
    color: red !important;
}

.kl_stretched {
    display: table;
    border-radius: 6px;
    background: red;
    color: #fff;
    letter-spacing: normal;
    font-style: italic;
    text-transform: uppercase;
    font-weight: 900;
    padding: 0 15px;
    line-height: 36px;
    font-size: 24px;
    margin-bottom: 15px;
}

.kl_titles h2 span {
    display: block;
    font-size: 16px;
    text-transform: lowercase;
    font-weight: 400;
    color: #fff;
}

.iti-flag {
    width: 20px;
    height: 15px;
    box-shadow: 0px 0px 1px 0px #888;
    background-image: url(/media/images/flags.png);
    background-repeat: no-repeat;
    background-color: #DBDBDB;
    background-position: 20px 0;
    display: block;
}

.flag-box {
    margin-right: 6px;
    vertical-align: middle;
    width: 20px;
}

.iti-flag {
    width: 20px
}

.iti-flag.be {
    width: 18px
}

.iti-flag.ch {
    width: 15px
}

.iti-flag.mc {
    width: 19px
}

.iti-flag.ne {
    width: 18px
}

.iti-flag.np {
    width: 13px
}

.iti-flag.va {
    width: 15px
}

.iti-flag.ac {
    height: 10px;
    background-position: 0px 0px
}

.iti-flag.ad {
    height: 14px;
    background-position: -22px 0px
}

.iti-flag.ae {
    height: 10px;
    background-position: -44px 0px
}

.iti-flag.af {
    height: 14px;
    background-position: -66px 0px
}

.iti-flag.ag {
    height: 14px;
    background-position: -88px 0px
}

.iti-flag.ai {
    height: 10px;
    background-position: -110px 0px
}

.iti-flag.al {
    height: 15px;
    background-position: -132px 0px
}

.iti-flag.am {
    height: 10px;
    background-position: -154px 0px
}

.iti-flag.ao {
    height: 14px;
    background-position: -176px 0px
}

.iti-flag.aq {
    height: 14px;
    background-position: -198px 0px
}

.iti-flag.ar {
    height: 13px;
    background-position: -220px 0px
}

.iti-flag.as {
    height: 10px;
    background-position: -242px 0px
}

.iti-flag.at {
    height: 14px;
    background-position: -264px 0px
}

.iti-flag.au {
    height: 10px;
    background-position: -286px 0px
}

.iti-flag.aw {
    height: 14px;
    background-position: -308px 0px
}

.iti-flag.ax {
    height: 13px;
    background-position: -330px 0px
}

.iti-flag.az {
    height: 10px;
    background-position: -352px 0px
}

.iti-flag.ba {
    height: 10px;
    background-position: -374px 0px
}

.iti-flag.bb {
    height: 14px;
    background-position: -396px 0px
}

.iti-flag.bd {
    height: 12px;
    background-position: -418px 0px
}

.iti-flag.be {
    height: 15px;
    background-position: -440px 0px
}

.iti-flag.bf {
    height: 14px;
    background-position: -460px 0px
}

.iti-flag.bg {
    height: 12px;
    background-position: -482px 0px
}

.iti-flag.bh {
    height: 12px;
    background-position: -504px 0px
}

.iti-flag.bi {
    height: 12px;
    background-position: -526px 0px
}

.iti-flag.bj {
    height: 14px;
    background-position: -548px 0px
}

.iti-flag.bl {
    height: 14px;
    background-position: -570px 0px
}

.iti-flag.bm {
    height: 10px;
    background-position: -592px 0px
}

.iti-flag.bn {
    height: 10px;
    background-position: -614px 0px
}

.iti-flag.bo {
    height: 14px;
    background-position: -636px 0px
}

.iti-flag.bq {
    height: 14px;
    background-position: -658px 0px
}

.iti-flag.br {
    height: 14px;
    background-position: -680px 0px
}

.iti-flag.bs {
    height: 10px;
    background-position: -702px 0px
}

.iti-flag.bt {
    height: 14px;
    background-position: -724px 0px
}

.iti-flag.bv {
    height: 15px;
    background-position: -746px 0px
}

.iti-flag.bw {
    height: 14px;
    background-position: -768px 0px
}

.iti-flag.by {
    height: 10px;
    background-position: -790px 0px
}

.iti-flag.bz {
    height: 14px;
    background-position: -812px 0px
}

.iti-flag.ca {
    height: 10px;
    background-position: -834px 0px
}

.iti-flag.cc {
    height: 10px;
    background-position: -856px 0px
}

.iti-flag.cd {
    height: 15px;
    background-position: -878px 0px
}

.iti-flag.cf {
    height: 14px;
    background-position: -900px 0px
}

.iti-flag.cg {
    height: 14px;
    background-position: -922px 0px
}

.iti-flag.ch {
    height: 15px;
    background-position: -944px 0px
}

.iti-flag.ci {
    height: 14px;
    background-position: -961px 0px
}

.iti-flag.ck {
    height: 10px;
    background-position: -983px 0px
}

.iti-flag.cl {
    height: 14px;
    background-position: -1005px 0px
}

.iti-flag.cm {
    height: 14px;
    background-position: -1027px 0px
}

.iti-flag.cn {
    height: 14px;
    background-position: -1049px 0px
}

.iti-flag.co {
    height: 14px;
    background-position: -1071px 0px
}

.iti-flag.cp {
    height: 14px;
    background-position: -1093px 0px
}

.iti-flag.cr {
    height: 12px;
    background-position: -1115px 0px
}

.iti-flag.cu {
    height: 10px;
    background-position: -1137px 0px
}

.iti-flag.cv {
    height: 12px;
    background-position: -1159px 0px
}

.iti-flag.cw {
    height: 14px;
    background-position: -1181px 0px
}

.iti-flag.cx {
    height: 10px;
    background-position: -1203px 0px
}

.iti-flag.cy {
    height: 13px;
    background-position: -1225px 0px
}

.iti-flag.cz {
    height: 14px;
    background-position: -1247px 0px
}

.iti-flag.de {
    height: 12px;
    background-position: -1269px 0px
}

.iti-flag.dg {
    height: 10px;
    background-position: -1291px 0px
}

.iti-flag.dj {
    height: 14px;
    background-position: -1313px 0px
}

.iti-flag.dk {
    height: 15px;
    background-position: -1335px 0px
}

.iti-flag.dm {
    height: 10px;
    background-position: -1357px 0px
}

.iti-flag.do {
    height: 13px;
    background-position: -1379px 0px
}

.iti-flag.dz {
    height: 14px;
    background-position: -1401px 0px
}

.iti-flag.ea {
    height: 14px;
    background-position: -1423px 0px
}

.iti-flag.ec {
    height: 14px;
    background-position: -1445px 0px
}

.iti-flag.ee {
    height: 13px;
    background-position: -1467px 0px
}

.iti-flag.eg {
    height: 14px;
    background-position: -1489px 0px
}

.iti-flag.eh {
    height: 10px;
    background-position: -1511px 0px
}

.iti-flag.er {
    height: 10px;
    background-position: -1533px 0px
}

.iti-flag.es {
    height: 14px;
    background-position: -1555px 0px
}

.iti-flag.et {
    height: 10px;
    background-position: -1577px 0px
}

.iti-flag.eu {
    height: 14px;
    background-position: -1599px 0px
}

.iti-flag.fi {
    height: 12px;
    background-position: -1621px 0px
}

.iti-flag.fj {
    height: 10px;
    background-position: -1643px 0px
}

.iti-flag.fk {
    height: 10px;
    background-position: -1665px 0px
}

.iti-flag.fm {
    height: 11px;
    background-position: -1687px 0px
}

.iti-flag.fo {
    height: 15px;
    background-position: -1709px 0px
}

.iti-flag.fr {
    height: 14px;
    background-position: -1731px 0px
}

.iti-flag.ga {
    height: 15px;
    background-position: -1753px 0px
}

.iti-flag.gb {
    height: 10px;
    background-position: -1775px 0px
}

.iti-flag.gd {
    height: 12px;
    background-position: -1797px 0px
}

.iti-flag.ge {
    height: 14px;
    background-position: -1819px 0px
}

.iti-flag.gf {
    height: 14px;
    background-position: -1841px 0px
}

.iti-flag.gg {
    height: 14px;
    background-position: -1863px 0px
}

.iti-flag.gh {
    height: 14px;
    background-position: -1885px 0px
}

.iti-flag.gi {
    height: 10px;
    background-position: -1907px 0px
}

.iti-flag.gl {
    height: 14px;
    background-position: -1929px 0px
}

.iti-flag.gm {
    height: 14px;
    background-position: -1951px 0px
}

.iti-flag.gn {
    height: 14px;
    background-position: -1973px 0px
}

.iti-flag.gp {
    height: 14px;
    background-position: -1995px 0px
}

.iti-flag.gq {
    height: 14px;
    background-position: -2017px 0px
}

.iti-flag.gr {
    height: 14px;
    background-position: -2039px 0px
}

.iti-flag.gs {
    height: 10px;
    background-position: -2061px 0px
}

.iti-flag.gt {
    height: 13px;
    background-position: -2083px 0px
}

.iti-flag.gu {
    height: 11px;
    background-position: -2105px 0px
}

.iti-flag.gw {
    height: 10px;
    background-position: -2127px 0px
}

.iti-flag.gy {
    height: 12px;
    background-position: -2149px 0px
}

.iti-flag.hk {
    height: 14px;
    background-position: -2171px 0px
}

.iti-flag.hm {
    height: 10px;
    background-position: -2193px 0px
}

.iti-flag.hn {
    height: 10px;
    background-position: -2215px 0px
}

.iti-flag.hr {
    height: 10px;
    background-position: -2237px 0px
}

.iti-flag.ht {
    height: 12px;
    background-position: -2259px 0px
}

.iti-flag.hu {
    height: 10px;
    background-position: -2281px 0px
}

.iti-flag.ic {
    height: 14px;
    background-position: -2303px 0px
}

.iti-flag.id {
    height: 14px;
    background-position: -2325px 0px
}

.iti-flag.ie {
    height: 10px;
    background-position: -2347px 0px
}

.iti-flag.il {
    height: 15px;
    background-position: -2369px 0px
}

.iti-flag.im {
    height: 10px;
    background-position: -2391px 0px
}

.iti-flag.in {
    height: 14px;
    background-position: -2413px 0px
}

.iti-flag.io {
    height: 10px;
    background-position: -2435px 0px
}

.iti-flag.iq {
    height: 14px;
    background-position: -2457px 0px
}

.iti-flag.ir {
    height: 12px;
    background-position: -2479px 0px
}

.iti-flag.is {
    height: 15px;
    background-position: -2501px 0px
}

.iti-flag.it {
    height: 14px;
    background-position: -2523px 0px
}

.iti-flag.je {
    height: 12px;
    background-position: -2545px 0px
}

.iti-flag.jm {
    height: 10px;
    background-position: -2567px 0px
}

.iti-flag.jo {
    height: 10px;
    background-position: -2589px 0px
}

.iti-flag.jp {
    height: 14px;
    background-position: -2611px 0px
}

.iti-flag.ke {
    height: 14px;
    background-position: -2633px 0px
}

.iti-flag.kg {
    height: 12px;
    background-position: -2655px 0px
}

.iti-flag.kh {
    height: 13px;
    background-position: -2677px 0px
}

.iti-flag.ki {
    height: 10px;
    background-position: -2699px 0px
}

.iti-flag.km {
    height: 12px;
    background-position: -2721px 0px
}

.iti-flag.kn {
    height: 14px;
    background-position: -2743px 0px
}

.iti-flag.kp {
    height: 10px;
    background-position: -2765px 0px
}

.iti-flag.kr {
    height: 14px;
    background-position: -2787px 0px
}

.iti-flag.kw {
    height: 10px;
    background-position: -2809px 0px
}

.iti-flag.ky {
    height: 10px;
    background-position: -2831px 0px
}

.iti-flag.kz {
    height: 10px;
    background-position: -2853px 0px
}

.iti-flag.la {
    height: 14px;
    background-position: -2875px 0px
}

.iti-flag.lb {
    height: 14px;
    background-position: -2897px 0px
}

.iti-flag.lc {
    height: 10px;
    background-position: -2919px 0px
}

.iti-flag.li {
    height: 12px;
    background-position: -2941px 0px
}

.iti-flag.lk {
    height: 10px;
    background-position: -2963px 0px
}

.iti-flag.lr {
    height: 11px;
    background-position: -2985px 0px
}

.iti-flag.ls {
    height: 14px;
    background-position: -3007px 0px
}

.iti-flag.lt {
    height: 12px;
    background-position: -3029px 0px
}

.iti-flag.lu {
    height: 12px;
    background-position: -3051px 0px
}

.iti-flag.lv {
    height: 10px;
    background-position: -3073px 0px
}

.iti-flag.ly {
    height: 10px;
    background-position: -3095px 0px
}

.iti-flag.ma {
    height: 14px;
    background-position: -3117px 0px
}

.iti-flag.mc {
    height: 15px;
    background-position: -3139px 0px
}

.iti-flag.md {
    height: 10px;
    background-position: -3160px 0px
}

.iti-flag.me {
    height: 10px;
    background-position: -3182px 0px
}

.iti-flag.mf {
    height: 14px;
    background-position: -3204px 0px
}

.iti-flag.mg {
    height: 14px;
    background-position: -3226px 0px
}

.iti-flag.mh {
    height: 11px;
    background-position: -3248px 0px
}

.iti-flag.mk {
    height: 10px;
    background-position: -3270px 0px
}

.iti-flag.ml {
    height: 14px;
    background-position: -3292px 0px
}

.iti-flag.mm {
    height: 14px;
    background-position: -3314px 0px
}

.iti-flag.mn {
    height: 10px;
    background-position: -3336px 0px
}

.iti-flag.mo {
    height: 14px;
    background-position: -3358px 0px
}

.iti-flag.mp {
    height: 10px;
    background-position: -3380px 0px
}

.iti-flag.mq {
    height: 14px;
    background-position: -3402px 0px
}

.iti-flag.mr {
    height: 14px;
    background-position: -3424px 0px
}

.iti-flag.ms {
    height: 10px;
    background-position: -3446px 0px
}

.iti-flag.mt {
    height: 14px;
    background-position: -3468px 0px
}

.iti-flag.mu {
    height: 14px;
    background-position: -3490px 0px
}

.iti-flag.mv {
    height: 14px;
    background-position: -3512px 0px
}

.iti-flag.mw {
    height: 14px;
    background-position: -3534px 0px
}

.iti-flag.mx {
    height: 12px;
    background-position: -3556px 0px
}

.iti-flag.my {
    height: 10px;
    background-position: -3578px 0px
}

.iti-flag.mz {
    height: 14px;
    background-position: -3600px 0px
}

.iti-flag.na {
    height: 14px;
    background-position: -3622px 0px
}

.iti-flag.nc {
    height: 10px;
    background-position: -3644px 0px
}

.iti-flag.ne {
    height: 15px;
    background-position: -3666px 0px
}

.iti-flag.nf {
    height: 10px;
    background-position: -3686px 0px
}

.iti-flag.ng {
    height: 10px;
    background-position: -3708px 0px
}

.iti-flag.ni {
    height: 12px;
    background-position: -3730px 0px
}

.iti-flag.nl {
    height: 14px;
    background-position: -3752px 0px
}

.iti-flag.no {
    height: 15px;
    background-position: -3774px 0px
}

.iti-flag.np {
    height: 15px;
    background-position: -3796px 0px
}

.iti-flag.nr {
    height: 10px;
    background-position: -3811px 0px
}

.iti-flag.nu {
    height: 10px;
    background-position: -3833px 0px
}

.iti-flag.nz {
    height: 10px;
    background-position: -3855px 0px
}

.iti-flag.om {
    height: 10px;
    background-position: -3877px 0px
}

.iti-flag.pa {
    height: 14px;
    background-position: -3899px 0px
}

.iti-flag.pe {
    height: 14px;
    background-position: -3921px 0px
}

.iti-flag.pf {
    height: 14px;
    background-position: -3943px 0px
}

.iti-flag.pg {
    height: 15px;
    background-position: -3965px 0px
}

.iti-flag.ph {
    height: 10px;
    background-position: -3987px 0px
}

.iti-flag.pk {
    height: 14px;
    background-position: -4009px 0px
}

.iti-flag.pl {
    height: 13px;
    background-position: -4031px 0px
}

.iti-flag.pm {
    height: 14px;
    background-position: -4053px 0px
}

.iti-flag.pn {
    height: 10px;
    background-position: -4075px 0px
}

.iti-flag.pr {
    height: 14px;
    background-position: -4097px 0px
}

.iti-flag.ps {
    height: 10px;
    background-position: -4119px 0px
}

.iti-flag.pt {
    height: 14px;
    background-position: -4141px 0px
}

.iti-flag.pw {
    height: 13px;
    background-position: -4163px 0px
}

.iti-flag.py {
    height: 11px;
    background-position: -4185px 0px
}

.iti-flag.qa {
    height: 8px;
    background-position: -4207px 0px
}

.iti-flag.re {
    height: 14px;
    background-position: -4229px 0px
}

.iti-flag.ro {
    height: 14px;
    background-position: -4251px 0px
}

.iti-flag.rs {
    height: 14px;
    background-position: -4273px 0px
}

.iti-flag.ru {
    height: 14px;
    background-position: -4295px 0px
}

.iti-flag.rw {
    height: 14px;
    background-position: -4317px 0px
}

.iti-flag.sa {
    height: 14px;
    background-position: -4339px 0px
}

.iti-flag.sb {
    height: 10px;
    background-position: -4361px 0px
}

.iti-flag.sc {
    height: 10px;
    background-position: -4383px 0px
}

.iti-flag.sd {
    height: 10px;
    background-position: -4405px 0px
}

.iti-flag.se {
    height: 13px;
    background-position: -4427px 0px
}

.iti-flag.sg {
    height: 14px;
    background-position: -4449px 0px
}

.iti-flag.sh {
    height: 10px;
    background-position: -4471px 0px
}

.iti-flag.si {
    height: 10px;
    background-position: -4493px 0px
}

.iti-flag.sj {
    height: 15px;
    background-position: -4515px 0px
}

.iti-flag.sk {
    height: 14px;
    background-position: -4537px 0px
}

.iti-flag.sl {
    height: 14px;
    background-position: -4559px 0px
}

.iti-flag.sm {
    height: 15px;
    background-position: -4581px 0px
}

.iti-flag.sn {
    height: 14px;
    background-position: -4603px 0px
}

.iti-flag.so {
    height: 14px;
    background-position: -4625px 0px
}

.iti-flag.sr {
    height: 14px;
    background-position: -4647px 0px
}

.iti-flag.ss {
    height: 10px;
    background-position: -4669px 0px
}

.iti-flag.st {
    height: 10px;
    background-position: -4691px 0px
}

.iti-flag.sv {
    height: 12px;
    background-position: -4713px 0px
}

.iti-flag.sx {
    height: 14px;
    background-position: -4735px 0px
}

.iti-flag.sy {
    height: 14px;
    background-position: -4757px 0px
}

.iti-flag.sz {
    height: 14px;
    background-position: -4779px 0px
}

.iti-flag.ta {
    height: 10px;
    background-position: -4801px 0px
}

.iti-flag.tc {
    height: 10px;
    background-position: -4823px 0px
}

.iti-flag.td {
    height: 14px;
    background-position: -4845px 0px
}

.iti-flag.tf {
    height: 14px;
    background-position: -4867px 0px
}

.iti-flag.tg {
    height: 13px;
    background-position: -4889px 0px
}

.iti-flag.th {
    height: 14px;
    background-position: -4911px 0px
}

.iti-flag.tj {
    height: 10px;
    background-position: -4933px 0px
}

.iti-flag.tk {
    height: 10px;
    background-position: -4955px 0px
}

.iti-flag.tl {
    height: 10px;
    background-position: -4977px 0px
}

.iti-flag.tm {
    height: 14px;
    background-position: -4999px 0px
}

.iti-flag.tn {
    height: 14px;
    background-position: -5021px 0px
}

.iti-flag.to {
    height: 10px;
    background-position: -5043px 0px
}

.iti-flag.tr {
    height: 14px;
    background-position: -5065px 0px
}

.iti-flag.tt {
    height: 12px;
    background-position: -5087px 0px
}

.iti-flag.tv {
    height: 10px;
    background-position: -5109px 0px
}

.iti-flag.tw {
    height: 14px;
    background-position: -5131px 0px
}

.iti-flag.tz {
    height: 14px;
    background-position: -5153px 0px
}

.iti-flag.ua {
    height: 14px;
    background-position: -5175px 0px
}

.iti-flag.ug {
    height: 14px;
    background-position: -5197px 0px
}

.iti-flag.um {
    height: 11px;
    background-position: -5219px 0px
}

.iti-flag.us {
    height: 11px;
    background-position: -5241px 0px
}

.iti-flag.uy {
    height: 14px;
    background-position: -5263px 0px
}

.iti-flag.uz {
    height: 10px;
    background-position: -5285px 0px
}

.iti-flag.va {
    height: 15px;
    background-position: -5307px 0px
}

.iti-flag.vc {
    height: 14px;
    background-position: -5324px 0px
}

.iti-flag.ve {
    height: 14px;
    background-position: -5346px 0px
}

.iti-flag.vg {
    height: 10px;
    background-position: -5368px 0px
}

.iti-flag.vi {
    height: 14px;
    background-position: -5390px 0px
}

.iti-flag.vn {
    height: 14px;
    background-position: -5412px 0px
}

.iti-flag.vu {
    height: 12px;
    background-position: -5434px 0px
}

.iti-flag.wf {
    height: 14px;
    background-position: -5456px 0px
}

.iti-flag.ws {
    height: 10px;
    background-position: -5478px 0px
}

.iti-flag.xk {
    height: 15px;
    background-position: -5500px 0px
}

.iti-flag.ye {
    height: 14px;
    background-position: -5522px 0px
}

.iti-flag.yt {
    height: 14px;
    background-position: -5544px 0px
}

.iti-flag.za {
    height: 14px;
    background-position: -5566px 0px
}

.iti-flag.zm {
    height: 14px;
    background-position: -5588px 0px
}

.iti-flag.zw {
    height: 10px;
    background-position: -5610px 0px
}

.select2-results__option {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.country-name {
    margin-right: 6px;
    vertical-align: middle;
    word-break: break-word;
    width: 220px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.country-code {
    color: #999;
    vertical-align: middle;
}

.select2-dropdown {
    width: 320px !important;
    border: none !important;
}

.selected-flag {
    width: 90px;
    display: flex;
    align-items: center;
    height: 100%;
}

.select2-container--default .select2-selection--single {
    background: transparent !important;
    border: none !important;
    border-radius: unset !important;
}

.select2 {
    width: 90px !important;
}

#phone input:not(.select2-search__field) {
    padding-left: 100px;
    margin-left: -90px;
}

.select2-container .select2-selection--single {
    height: auto !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    height: 54px;
}

.selected-country-code {
    padding-left: 10px;
    color: #fff;
    width: 45px;
    text-align: right;
    line-height: 1;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 54px !important;
    width: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 15px !important;
    padding-right: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #fff transparent transparent transparent !important;
    border-width: 4px 3px 0 3px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #fff transparent !important;
    border-width: 0 3px 4px 3px !important;
}

.vehicles_menu {
    padding-top: 120px;
    padding-bottom: 50px;
    background: #f8f8f8;
}

.vehicles_menu_based {
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.vehicles_menu_groups {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.vehicles_menu_group {
    width: 100%;
    margin-bottom: 30px;
}

.vehicles_menu_group:last-child {
    margin-bottom: 0;
}

.vehicles_menu_group .inner {
    margin-left: 10px;
    margin-right: 10px;
}

.vehicles_menu h1 {
    margin-bottom: 0;
}

.vehicles_menu_group_title {
    background: #fff;
    padding: 15px;
    font-size: 26px;
    margin-bottom: 10px;
    text-align: center;
}

.vehicles_menu_group_item {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 10px;
}

.vehicles_menu_group_item_title {
    font-weight: 700;
    font-size: 16px;
}

.vehicles_menu_group_item_title span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 5px;
    text-transform: lowercase;
}

.vehicles_menu_group_item_title .klassen {
    margin-right: 5px;
}

.vehicles_menu_group_item_arrow {
    display: flex;
}

.vehicles_menu_group_item_arrow svg {
    width: 24px;
    height: 24px;
}

.vehicles_menu_group_more {
    padding: 15px 20px;
    display: block;
    font-size: 14px;
}

.configurators {
    padding-top: 120px;
}

.configurators .vehicle_section_title {
    width: 100%;
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 900;
}

.home_vehicles_menu {
    background: #f8f8f8;
    padding-bottom: 50px;
}

.vehicles_menu_group_image img {
    width: 100%;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.select2-container .select2-selection--single .select2-selection__clear {
    background-color: transparent;
    border: none;
    font-size: 1em
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline;
    list-style: none;
    padding: 0
}

.select2-container .select2-selection--multiple .select2-selection__clear {
    background-color: transparent;
    border: none;
    font-size: 1em
}

.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    margin-left: 5px;
    padding: 0;
    max-width: 100%;
    resize: none;
    height: 18px;
    vertical-align: bottom;
    font-family: sans-serif;
    overflow: hidden;
    word-break: keep-all
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051
}

.select2-results {
    display: block
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0
}

.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none
}

.select2-results__option--selectable {
    cursor: pointer
}

.select2-container--open .select2-dropdown {
    left: 0
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-search--dropdown {
    display: block;
    padding: 4px
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-search--dropdown.select2-search--hide {
    display: none
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0)
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    height: 26px;
    margin-right: 20px;
    padding-right: 0px
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    padding-bottom: 5px;
    padding-right: 5px;
    position: relative
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
    padding-right: 25px
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    font-weight: bold;
    height: 20px;
    margin-right: 10px;
    margin-top: 5px;
    position: absolute;
    right: 0;
    padding: 1px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0;
    padding-left: 20px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    cursor: default;
    padding-left: 2px;
    padding-right: 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-right: 1px solid #aaa;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #999;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    padding: 0 4px;
    position: absolute;
    left: 0;
    top: 0
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: #f1f1f1;
    color: #333;
    outline: none
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 2px
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    border-left: 1px solid #aaa;
    border-right: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear {
    float: left;
    margin-left: 10px;
    margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em
}

.select2-container--default .select2-results__option--group {
    padding: 0
}

.select2-container--default .select2-results__option--disabled {
    color: #999
}

.select2-container--default .select2-results__option--selected {
    background-color: #ddd
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #5897fb;
    color: white
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
    background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
    background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    height: 26px;
    margin-right: 20px
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
    background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
    background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
    background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
    background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
    background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)
}

.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
    padding-bottom: 5px;
    padding-right: 5px
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
    cursor: default;
    padding-left: 2px;
    padding-right: 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #888;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    padding: 0 4px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555;
    outline: none
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 2px
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none
}

.select2-container--classic .select2-dropdown {
    background-color: #fff;
    border: 1px solid transparent
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none
}

.select2-container--classic .select2-dropdown--below {
    border-top: none
}

.select2-container--classic .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--classic .select2-results__option--group {
    padding: 0
}

.select2-container--classic .select2-results__option--disabled {
    color: grey
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #3875d7;
    color: #fff
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb
}

.cars_list_item_images_inner {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cars_list_item_images_inner .flickity-viewport {
    height: 100% !important;
}

.cookie--banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ccc;
    z-index: 99999;
}

.cookie--banner_inner {
    padding: 30px;
}

.cookie--banner_text {
    flex: 1;
    margin-bottom: 20px;
}

.cookie--banner_text p:first-child {
    margin-bottom: 10px;
}

.cookie--banner_text a {
    text-decoration: underline;
}

.social h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: center;
}

.social {
    padding: 100px 0 20px;
}

.social--items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.social--item {
    width: 50%;
    margin-bottom: 10px;
}

.social--item_inner {
    padding: 30px 10px;
    border-radius: 10px;
    margin-left: 5px;
    margin-right: 5px;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgb(15 15 15 / 10%);
    text-align: center;
}

.social--item_image {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
}

.social--item_info {
    flex: 1;
}

.social--item_link {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

.social--item_followers {
    color: #666;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
}

.social--item_followers span {
    color: #000;
    font-weight: 500;
}

#jobs {
    background: #f8f8f8;
    padding: 50px 0 100px;
}

#jobs .container {
    max-width: 1200px;
}

#jobs h2 {
    text-align: center;
    text-transform: uppercase;
}

#jobs h3 {
    text-align: center;
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.8em;
    margin-bottom: 1.3em;
}

#jobs .job--item {
    display: flex;
    flex-direction: column;
    background: #fff;
    margin-bottom: 20px;
    position: relative;
}

#jobs .job--item:last-child {
    margin-bottom: 0;
}

#jobs .job--image {
    width: 100%;
    padding-top: 56%;
    position: relative;
    overflow: hidden;
}

#jobs .job--image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

#jobs .job--main {
    position: relative;
    flex: 1;
    padding: 20px 20px 85px 20px;
}

#jobs .job--title {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

#jobs .job--btn {
    display: flex;
    position: absolute;
    top: auto;
    bottom: 20px;
    right: 20px;
}

#jobs .job--btn .btn {
    margin: auto;
}

#jobs .job--category {
    margin-bottom: 10px;
    font-size: 14px;
    font-style: italic;
}

#jobs .job--location {
    color: #999;
    font-size: 14px;
}

#job .container {
    max-width: 1200px;
}

#job .inner {
    display: flex;
}

#job .job--main {
    flex: 1;
}

#job .job--btns {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px;
    z-index: 10;
    border-top: 1px solid #ccc;
}

#job .job--title {
    text-align: left;
    text-transform: none;
}

#job .job--btn_main {
    text-align: center;
    max-width: 250px;
    margin: auto;
}

#job .job--btns .job--btn_main a {
    width: 100%;
    height: 55px;
    margin-bottom: 10px;
    font-size: 16px;
}

#job .job--btn_main a {
    font-weight: 500 !important;
}

#job .job--share_btns {
    display: flex;
    max-width: 250px;
    margin: auto;
}

#job .job--share_btns a {
    display: flex;
    cursor: pointer;
    width: 40px;
    height: 40px;
    transition: background-color .3s ease;
}

#job .job--share_in {
    display: flex;
    align-items: center;
    background-color: #007bb6;
    border-color: #007bb6;
    margin-right: 3px;
    flex: 1;
}

#job .job--share_in:hover {
    background-color: #005983;
}

#job .job--share_in span {
    display: block;
    flex: 1;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

#job .job--share_fb {
    background-color: #3b5998;
    border-color: #3b5998;
    margin-right: 3px;
}

#job .job--share_fb:hover {
    background-color: #1c2b49;
}

#job .job--share_tw {
    background-color: #55acee;
    border-color: #55acee;
}

#job .job--share_tw:hover {
    background-color: #4286ba;
}

#job .job--share_btns a svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    stroke: none;
    margin: auto;
}

#job .job--share_in svg {
    margin: auto 0 auto 10px !important;
}

#job .job--share_title {
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
}

#job .job--image {
    width: 100%;
    margin-bottom: 30px;
}

#job .job--image img {
    width: 100%;
}

#job--request {
    min-height: 100vh;
}

#job--request .container {
    max-width: 600px;
}


#job--request .selected-country-code {
    color: #000;
}

#job--request .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #000 transparent transparent transparent !important;
}

#job--request .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #000 transparent !important;
}

#job--request .select2-dropdown {
    border: 1px solid #aaa !important;
}

.input_files, .input_file, .input_image {
    margin-bottom: 20px;
}

.input_files label {
    margin-bottom: 20px;
}

.input_files_item input {
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.input_file img {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
}

.input_files_item {
    cursor: pointer;
    position: relative;
    display: inline-block;
    height: 100px;
    width: 100px;
    background: #fff url(/media/images/icons/photo_camera_gray.svg);
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: 1px solid #ccc;
}

.input_image {
    margin-bottom: 25px;
}

.input_image .input_files_item .remove_image {
    display: none !important;
}

.input_image .input_files_item.active .remove_image {
    display: block !important;
}

#job--request label {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
}

#job--request input:not([type='file']), #job--request textarea, #job--request select {
    height: 55px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    width: 100%;
    color: #343434;
    background: #fff;
    line-height: 1;
}

#job--request textarea {
    height: 150px;
}

.input_files_item_pdf {
    cursor: pointer;
    position: relative;
    display: inline-block;
    height: 100px;
    width: 100px;
    background: #fff url(/media/images/icons/document.svg);
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: 1px solid #ccc;
}

.input_files_item_pdf input {
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.input_description {
    margin-bottom: 10px;
    font-size: 14px;
}

.input_files_item_error {
    background: red;
    color: #fff;
    font-size: 10px;
    position: absolute;
    bottom: 0;
    padding: 0 3px;
    text-align: center;
    width: 100%;
}

.input_files_item .error, .input_file .error {
    width: 200px;
}

.input_files_item_pdf.active:before {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff url("/media/images/icons/checkbox-marked-circle.svg");
    background-size: 100%;
    position: absolute;
    right: -10px;
    top: -10px;
}

#job--request .error_wrap *, .input_files_item.error_wrap, .input_files_item_pdf.error_wrap {
    border-color: red !important;
}

#configurators {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 100px;
    background: #f8f8f8;
}

.configurators__search {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.configurators__search input {
    height: 45px;
    flex: 1;
}

.configurators__search .input_wrap {
    margin: 0;
    flex: 1;
}

.configurators__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.configurator__item {
    width: 100%;
    min-width: 290px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 24px -8px rgb(0 0 0 / 16%);
    transition: box-shadow .3s;
}

.configurator__item *:last-child {
    margin-bottom: 0 !important;
}

.configurator__item-inner {
    overflow: hidden;
    padding: 40px 0 0 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.configurator__item-based {
    font-size: 12px;
    margin-bottom: 5px;
    text-align: center;
}

.configurator__item-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.configurator__item-sub-title {
    text-align: center;
    margin-bottom: 30px;
    color: #7d7d7d;
}

.configurator__item-sub-title span {
    color: red;
    font-weight: 700;
}

.configurator__model-image {
    display: flex;
    flex: 1;
}

.configurator__model-image img {
    margin-top: auto;
}

.configurator__item-images {
    position: relative;
    display: flex;
    overflow: hidden;
}

.smodel__item a {
    padding: 40px 0 0;
}

.configurator__item-image {
    position: relative;
    padding-top: 60%;
    width: 100%;
    overflow: hidden;
}

.configurator__item-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#configurator {
    padding-top: 60px;
    background: #f8f8f8;
}

.configurator__header {
    position: sticky;
    top: 61px;
    left: 0;
    right: 0;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #ccc;
    height: 80px;
    z-index: 11;
}

.configurator__header-image {
    width: 80px;
    height: auto;
    margin-right: 10px;
    display: none;
}


.configurator__header-info {
    flex: 1;
    position: relative;
}

.configurator__header-make {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 5px;
}

.configurator__header-make span {
    font-size: 12px;
    font-weight: 900;
}

.configurator__header-model {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 5px;
}

.configurator__header-model span {
    font-size: 12px;
    font-weight: 900;
    color: red;
}

.configurator__header-model .klassen {
    color: #000;
}

.configurator__header-price {
    text-align: right;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    gap: 5px;
}

.configurator__header-price-value {
    font-weight: 900;
}


.configurator__body {
    position: relative;
}

.configurator__body-menu {
    position: fixed;
    top: 140px;
    left: 0;
    background: #fff;
    width: 100%;
    z-index: 10;
}

.configurator__body-menu-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid #ccc;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.configurator__body-menu-button svg {
    width: 20px;
    height: 20px;
    fill: #444;
}

.configurator__body-menu-inner {
    display: none;
    overflow-y: auto;
}

.configurator__body-menu-inner li {
    position: relative;
}

.configurator__body-menu.active .configurator__body-menu-inner {
    display: block;
}

.configurator__body-menu.active .configurator__body-menu-button svg {
    transform: rotate(-180deg);
}

.configurator__body-main {
    padding: 46px 10px 0 10px;
}

.configurator__body-menu-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #ccc;
    padding-left: 30px;
    padding-right: 20px;
    font-size: 15px;
    transition: background-color .3s, color .3s;
}

.configurator__body-menu-item:hover {
    background: #eee;
}

.configurator__body-menu-item.active {
    background: #333;
    color: #fff;
}

.configurator__body-main h2 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding: 20px;
    background: #333;
    color: #ffff;
    margin-left: -10px;
    margin-right: -10px;
}

.configurator__body-main h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
}

.configurator__body-main h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.configurator__cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 30px;
}

.configurator__card {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 400px;
    max-width: 100%;
    z-index: 9;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 3px 0, rgba(0, 0, 0, 0.1) 0 3px 3px 0;
    overflow: hidden;
}

.configurator__cards_carousel .configurator__card {
    margin-right: 30px;
    max-width: calc(100% - 40px);
    min-height: 100%;
}

.configurator__cards_carousel .flickity-slider {
    display: flex;
}

.configurator__cards_carousel .flickity-viewport > .flickity-slider {
    margin: 3px;
}

.configurator__cards_carousel .flickity-prev-next-button {

}

.configurator__cards_carousel .flickity-prev-next-button.next {

}

.configurator__cards_carousel .flickity-prev-next-button.previous {

}


.configurator__category-description {
    margin-bottom: 20px;
    line-height: 1.5;
}

.configurator__card-info {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 30px 20px;
}

.configurator__card-info > .configurator__card-description {
    max-height: 200px;
    overflow-y: auto;
}


.configurator__card.selected {
    box-shadow: 0 0 0 3px #2060df;
}

.configurator__card-info *:last-child {
    margin-bottom: 0;
}

.configurator__card-images .flickity-slider {
    margin: 0 !important;
}

.configurator__card-image, .configurator__card-video {
    position: relative;
    padding-top: 60%;
    width: 100%;
    overflow: hidden;
}

.configurator__card-video:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.configurator__card-video:before {
    background: transparent url(/media/images/icons/video-play.png) no-repeat center;
    background-size: 60px 60px;
    z-index: 3;
}

.configurator__cards .flickity-button:disabled {
    display: none;
}

.configurator__cards .flickity-page-dots {
    z-index: 1;
    bottom: 10px;
    background: transparent !important;
}


.configurator__cards .flickity-page-dots .dot {
    background: #ffffff;
    margin: 0 5px;
    opacity: 0.5;
}

.flickity-page-dots .dot:first-child:nth-last-child(1) {
    opacity: 0;
}

.configurator__card-image img, .configurator__card-video img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.configurator__card-title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 10px;
}

.configurator__card-price {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 400;
}

.configurator__card-description {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 24px;
    flex: 1;
}

.configurator__card-description p {
    font-size: 13px;
    line-height: 24px;
}

.configurator__card ul {
    padding-left: 20px;
}

.configurator__card li {
    list-style-type: disc;
}

.scroll::-webkit-scrollbar {
    width: 5px;
    right: -10px;
    margin-left: -5px;
}

.scroll_black::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scroll_black::-webkit-scrollbar-thumb {
    background: #222;
}

.scroll_black::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.configurator__card.selected * {
    color: #fff;
    background: #333;
}

.configurator__card.selected .flickity-button {
    background: #333;
}

.configurator__card.selected .flickity-button svg {
    background: transparent;
    fill: #fff;
}

.configurator__card .flickity-button:hover {

}

.configurator__card .flickity-button:hover svg {

}

.configurator__card.selected .flickity-button:hover {

}

.configurator__card.selected .flickity-button:hover svg {

}


.configurator__card-attributes-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.configurator__card-attributes {
    flex: 1;
}

.configurator__card-attributes table {
    width: 100%;
}

.configurator__card-attribute td {
    font-size: 12px;
    line-height: 20px;
}

.configurator__card-attribute td:last-child {
    text-align: right;
    font-weight: 700;
}

.configurator__card-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #ccc;
}

.configurator__card-button .btn {
    width: 150px;
}

.configurator__card-selected-button {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #2060df !important;
    align-items: center;
    font-size: 13px;
    height: 34px;
    padding-left: 15px;
    padding-right: 15px;
    text-transform: uppercase;
}

.configurator__card.selected .configurator__card-button .btn {
    display: none;
}

.configurator__card.selected .configurator__card-selected-button {
    display: flex;
}

.configurator__card-button-remove {
    display: none;
}

.configurator__card-button-remove.visible {
    display: inline-flex !important;
}


.configurator__body-menu .dropdown:before {
    content: '';
    position: absolute;
    left: 15px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #727273;
    top: 21px;
    transition: all 0.3s ease-in-out;
}

.configurator__body-menu .dropdown_active:before {
    transform: rotate(90deg);
}

.configurator__body-menu .dropdown_wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.configurator__body-menu .dropdown_active .dropdown_wrap {
    max-height: 700px;
}

.configurator__body-menu .dropdown_wrap a {
    padding-left: 40px;
}


.configurator__totals-buttons {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 10px;

}

.configurator__totals {
    display: flex;
    justify-content: space-between;
    box-shadow: rgb(0 0 0 / 10%) 0 0 3px 0, rgb(0 0 0 / 10%) 0 3px 3px 0;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: #333;
    color: #fff;
    margin-left: -10px;
    margin-right: -10px;
}

.configurator__totals-title {
    font-weight: 700;
}

.configurator__totals-price {
    font-weight: 900;
    font-size: 18px;
}

.klassen_modal_copy {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.klassen_modal_copy svg {
    width: 20px;
    height: 20px;
}

.configurator__card-id {
    position: absolute;
    top: 0;
    right: 0;
    background: #333;
    height: 34px;
    display: flex;
    align-items: center;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    color: #fff !important;
    z-index: 1;
}

.configurator__card-details-btn {
    color: #373737;
    font-weight: 500;
    line-height: 45px;
    cursor: pointer;
    font-size: 14px;
}

.vehicle_panorama_item {
    display: flex;
    flex-direction: column;
}

.vehicle_panorama_item span {
    margin: 30px auto;
    position: relative;
    z-index: 2;
    height: 150px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 22px;
}

.configurator__card-details-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 7;
    transform: translateY(100%);
    transition: transform .4s;
    padding: 30px;
    overflow-y: auto;
}

.configurator__card-details-details.active {
    transform: translateY(0);
}

.configurator__card-details-close {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
}

.configurator__card-details-close svg {
    margin: auto;
    height: 20px;
    width: 20px;
    fill: #333;
}

.configurator__card.selected .configurator__card-details-close svg {
    fill: #fff;
}

.configurator__card-details-description {
    font-size: 12px;
    line-height: 24px;
}

.configurator__card-details-details .configurator__card-attributes {
    margin-bottom: 20px;
}

.flickity-viewport {
    width: 100%;
}

.configurator__cards:not(:has(div)) {
    display: none;
}


.seo_section {
    margin-top: 100px;
    margin-bottom: 100px;
    color: #a0a0a0;
}

.seo_section p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.home_makes-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.home_makes-item {
    width: 100%;
}

.home_makes-item a {
    display: block;
    background: #fff;
}

.home_makes-item-image img {
    width: 100%;
    display: block;
}


.home_makes-item-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.home_makes-item-title span {
    color: #333;
    font-size: 16px;
    margin-right: 7px;
    font-weight: 400;
}

.home_makes-item-model {
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.home_makes-item-description {
    line-height: 1.3;
    font-size: 15px;
}

.home_makes-item-info {
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 3px 24px -8px rgb(0 0 0 / 16%);
    border-radius: 0 0 10px 10px;
}

.home_configurators {
    padding-top: 50px;
    padding-bottom: 50px;
}

.page_social_top {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.page_social_top svg {
    width: 25px !important;
    height: 25px !important;
}

.configurator_modal-component {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.configurator_modal-component b {
    flex: 1;
}

.configurator_modal-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.modal_team_contacts .team_contacts {
    padding: 0;
}

.modal_team_contacts .team_contacts_group_item {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
}

.modal_team_contacts h2 {
    font-size: 30px !important;
}

.input_radio {

    & label.checkbox {
        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;
    }

    .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: #bbb;
        border-radius: 50%;
    }

    & label.checkbox span {
        font-size: 14px;
        line-height: 14px;
        color: #000;
        display: block;
    }

    & label.checkbox:hover input ~ .checkmark {
        background-color: #aaa;
    }

    & label.checkbox input:checked ~ .checkmark {
        background-color: #000;
    }

    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    & label.checkbox input:checked ~ .checkmark:after {
        display: block;
    }

    & 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);
    }
}

#vehicles {
    background: #f8f8f8;
    padding-top: 110px;

    #vehicles_filters {
        width: 100%;
        margin-bottom: 15px;
    }

    #vehicles_results {
        height: 100%;
        min-height: 500px;
    }

    & h1 {
        font-size: 24px;
        margin-bottom: 15px;

        & a {
            display: flex;
            flex-wrap: wrap;
            gap: 5px
        }
    }

    .vehicles_filters_group:not(:last-child) {
        margin-bottom: 15px;
    }

    .vehicles_filters_group:last-child {
        margin-bottom: 0;
    }

    .vehicles_filters_item {
        display: block;
        padding: 17px;
        font-size: 14px;
        border: 1px solid #ccc;
        font-weight: 500;
        cursor: pointer;
        background: #fff;
    }

    .vehicles_filters_item:hover {
        background: #f5f5f5;

    }

    .vehicles_filters_item.active {
        background: #000;
        color: #fff;
    }

    .vehicles_filters_item-stock {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .vehicles_filters_item-stock svg {
        width: 24px;
        height: 24px;
        fill: #666;
    }

    .vehicles_filters_item-stock.active svg {
        fill: #fff;
    }

    .vehicles_filters_group select {
        height: 53px;
        padding: 15px;
        border-color: #ccc;
        background: #fff;
        font-size: 14px;
        color: #000;
        font-weight: 500;
    }

    #vehicles_list {
        display: flex;
        flex-wrap: wrap;
    }

    #smodels_list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 15px;
    }

    #smodels_list .vehicles_filters_item {
        font-size: 16px;
        padding: 15px 30px
    }
}

.selected-country-code {
    color: #000;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #000 transparent transparent transparent !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #000 transparent !important;
}

.select2-dropdown {
    border: 1px solid #aaa !important;
}


.home-slider {
    margin-top: -60px;
    padding-top: 60px;
    overflow: hidden;
    position: relative;
    height: 500px;
}

.home-slider--inner {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.home-slider--slide {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.home-slider--bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.home-slider--bg img {
    object-fit: cover;
    object-position: left center;
    height: 100%;
    width: 100%;
}

.home-slider--bg:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #0000008c;
}


.home-slider--content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    padding: 60px 15px 20px;
    margin: 0 auto;
    z-index: 1;
    height: 100%;
}

.home-slider--content * {
    color: #fff;
}

.home-slider--content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.home-slider--content h1 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}

.home-slider--content h2 {
    line-height: 1.4;
}

.home-categories {
    position: relative;
    display: none;
}

.home-slider-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.home-categories.animation-down {
    transform: translateY(calc(50% - 50px));
}

.home-categories.animation-down.animation-active {
    transform: translateY(50%);
}

.home-categories--item {
    text-align: center;
    padding: 20px;
    border: 1px solid #ccc;
    background: #fff;
    margin-right: -1px;
}

.home-categories--item.is-nav-selected {
    background: #333;
    color: #fff;
    border-color: #333;
}

.home-categories--title {
    font-size: 12px;
    margin-bottom: 5px;
}

.home-categories--value {
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}

.home-slider--buttons {
    display: flex;
    margin-top: 40px;
    gap: 10px;
}

.home-slider--buttons .btn {
    width: calc(50% - 5px);
    padding: 0 10px;
}

.home-slider .flickity-viewport {
    height: 100% !important;
}


#vehicle {
    .vehicle_main .container_fluid {
        padding: 0;
    }

    .vehicle_main_info {
        max-width: 1400px;
        margin: auto;
        padding: 190px 15px 30px 15px;
    }

    .vehicle_main_banner .inner {
        position: relative;
    }

    .vehicle_main_banner_info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        padding-top: 150px;
        padding-bottom: 30px;
        display: flex;
        z-index: 2;
    }

    .vehicle_main_banner_titles {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
        text-align: center;
    }

    .vehicle_main_banner_titles_based {
        display: block;
        font-size: 16px;
        font-weight: 400;
        color: #fff;
        margin-bottom: 15px;
    }

    .vehicle_main_banner h1 {
        font-size: 40px;
        color: #fff;
        font-weight: 500;
        margin-bottom: 30px;
        line-height: 1;
    }

    .vehicle_main_banner_titles_text {
        display: block;
        font-size: 20px;
        font-weight: 300;
        color: #fff;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .vehicle_main_banner_video {
        height: 100vh;
        min-height: 800px;
        position: relative;
        z-index: 1;
    }

    .vehicle_main_banner_video video {
        object-fit: cover;
        object-position: 50% 50%;
        width: 100%;
        height: 100%;
    }

    .vehicle_main_banner_video picture {
        object-fit: cover;
        object-position: 50% 50%;
        width: 100%;
        height: 100%;
    }

    .vehicle_main_banner_video:before {
        content: "";
        z-index: 1;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 60%) 0%, rgba(0, 0, 0, 25%) 20%, rgba(0, 0, 0, 25%) 80%);
        width: 100%;
        height: 100%;
    }

    .vehicle_main_banner_video:after {
        content: "";
        z-index: 1;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-image: linear-gradient(to top, rgb(0, 0, 0) 0px, rgba(0, 0, 0, 0) 100%);
        width: 100%;
        height: 20%;
    }

    .vehicle_main .inner {
        height: 100vh;
        min-height: 800px;
    }

    .vehicle_main_bg {
        height: 100%;
        position: relative;
    }

    .vehicle_main_bg:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: #00000061;
    }

    .vehicle_main_bg:after {
        content: '';
        position: absolute;
        right: 0;
        left: 0;
        bottom: 0;
        top: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 100%) 0%, rgba(0, 0, 0, 0%) 20%);
    }

    .vehicle_images {
        position: relative;
        background: #000;
        padding-top: 30px;
    }

    .vehicle_images .container_fluid {
        padding: 0;
    }

    .vehicle_section_heading {
        background: #000;
        padding-bottom: 25px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .vehicle_section_heading h2 {
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 20px;
    }

    .vehicle_section_heading p {
        color: #fff;
        text-align: center;
        line-height: 1.4;
        font-weight: 400;
        font-size: 15px;
    }

    .vehicle_videos {
        padding-top: 50px;
        background: #000;
    }

    .vehicle_videos .container_fluid {
        padding-left: 0;
        padding-right: 0;
    }

    .vehicle_images_list, .vehicle_videos_list {
        position: relative;
        height: 66vw;
        min-height: 200px;
        background: #000;
    }

    .vehicle_images_list img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .vehicle_videos_list img {
        display: block;
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }

    .vehicle_images_list .carousel-cell {
        opacity: 0;
    }

    .vehicle_images_list a {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
    }

    .carousel-cell.is-selected {
        position: relative;
        z-index: 99;
    }

    .carousel-cell.is-selected:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        height: 20%;
        background-image: linear-gradient(rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 2;
    }

    .carousel-cell.is-selected:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 2;
        height: 30%;
    }


    .carousel-main {
        display: none;
        position: relative;
        height: 100%;
        overflow: hidden;
    }

    .carousel-main.flickity-enabled {
        display: block;
    }

    .carousel-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        max-width: 1000px;
        margin: auto;
    }

    .carousel-nav.flickity-enabled {
        display: block;
    }


    .carousel-nav-item {
        height: 50px;
        width: 90px;
        margin: 0 5px;
        opacity: 0.6;
        transition: opacity .3s;
    }

    .carousel-nav-item:hover, .is-nav-selected {
        opacity: 1;
    }

    .vehicle_menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        backdrop-filter: blur(24px);
        background-color: rgba(45, 45, 45, 0.4);
        z-index: 111;
        transform: translateY(-45px);
        transition: transform .3s;
    }

    .vehicle_menu .container_fluid {
        margin-left: 40px;
        margin-right: 40px;
    }

    .vehicle_menu .inner {
        height: 42px;
        display: flex;
        align-items: center;
    }

    .vehicle_menu * {
        color: #fff;
    }

    .vehicle_menu .vehicle_number {
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
    }

    .vehicle_menu ul {
        display: flex;
        align-items: center;
        margin-right: auto;
    }

    .vehicle_menu ul li {
        cursor: pointer;
        margin-left: 25px;
        margin-right: 25px;
        font-size: 14px;
        font-weight: 500;
    }

    .vehicle_menu ul li:first-child {
        margin-left: 0;
    }

    .vehicle_characteristics {
        margin-bottom: 20px;
    }

    .vehicle_characteristics_list {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        z-index: 2;
        margin: auto;
    }

    .vehicle_main_info .vehicle_characteristics .flickity-page-dots {
        bottom: -40px;
    }

    .vehicle_characteristics_item {
        width: 33.333%;
    }

    .vehicle_characteristics_item * {
        text-align: center;
        color: #fff;
    }

    .vehicle_characteristics_item p:first-child {
        font-size: 18px;
        font-weight: 900;
        margin-bottom: 10px;
    }

    .vehicle_characteristics_item p:last-child {
        font-size: 14px;
        font-weight: 400;
        opacity: 0.8;
    }

    .vehicle_main_titles {
        margin-top: 0;
        margin-bottom: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .vehicle_main_request {
        margin-bottom: 40px;
    }

    .vehicle_main_request .btn {
        width: 100%;
        max-width: 350px;
    }

    .vehicle_360_panoramas {
        padding: 50px 0;
        background: #000;
    }

    .vehicle_360_panoramas .container_fluid {
        padding-left: 0;
        padding-right: 0;
    }

    .configurator__item {
        margin: 0 40px;
        box-shadow: unset;
        border-radius: unset;
    }

    .configurator__item-inner {
        padding-top: 0;
    }

    .flickity-page-dots .dot {
        background: #fff;
    }

    .vehicle_dimensions .flickity-page-dots .dot {
        background: #000;
    }

    #vehicle_panoramas {
        .vehicle_panorama_item:after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0) 100%);
            z-index: -1;
            height: 100%;
        }

        .flickity-page-dots {
            display: flex;
            gap: 10px;
            justify-content: center;
            bottom: -35px;
        }

        .flickity-page-dots .dot {
            opacity: 1;
            background: rgb(92, 94, 98);
            width: 15px;
            height: 15px;
            margin: 0;
        }

        .flickity-page-dots .dot.is-selected {
            background: #fff;
        }

        .flickity-prev-next-button.previous {
            left: 0;
        }

        .flickity-prev-next-button {
            top: 0;
            bottom: 0;
            width: 44px;
            height: 100%;
            border-radius: 0;
            transform: none;
            background: transparent;
        }

        .flickity-prev-next-button {
            right: 0;
        }

        .flickity-prev-next-button .flickity-button-icon {
            fill: #fff;
        }
    }

    .vehicle_contact {
        padding: 50px 0;
        background: #000;
        color: #fff;
    }

    .vehicle_contact .vehicle_section_heading {
        padding-left: 0;
        padding-right: 0;
    }

    .vehicle_contact .flickity-page-dots {
        bottom: -35px;
    }

    .sales_team {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 50px;
    }

    .sales_team .flickity-slider {

    }

    .sales_team_item {
        display: flex;
        width: 100%;
        margin: 0 15px;
    }

    .sales_team_image {
        margin-right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        border: 1px solid #444;
    }

    .sales_team_image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .sales_team_info {
        flex: 1;
    }

    .sales_team_name {
        font-weight: 700;
        font-size: 18px;
    }

    .sales_team_position {
        margin-top: 15px;
        font-size: 12px;
    }

    .sales_team_lang {
        font-size: 13px;
        color: #ccc;
        margin-top: 15px;
    }

    .sales_team_contacts {
        margin-top: 15px;
        display: flex;
    }

    .sales_team_contacts span {
        margin-right: 10px;
        font-size: 14px;
    }

    .sales_team_contacts a {
        font-size: 14px;
        font-weight: 700;
        margin-left: auto;
    }

    .sales_team_buttons {
        display: flex;
        gap: 5px;
        margin-top: 15px;
    }

    .sales_team_buttons a {
        padding: 0 10px !important;
    }

    .vehicle_videos_list .carousel-cell {
        position: relative;
        height: 100%;
        width: 100%;
    }

    .vehicle_video_play {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        background: #00000045;
        display: flex;
    }

    .vehicle_video_play svg {
        width: 70px;
        height: 70px;
        fill: #fff;
        margin: auto;
        transition: transform .5s, fill .5s;
    }

    .vehicle_video_play:hover svg {
        transform: scale(1.2);
    }

    .vehicle_configurators .vehicle_section_heading {
        background: #fff;
    }

    .vehicle_configurators .vehicle_section_heading * {
        color: #000;
    }

    .vehicle_configurators .vehicle_section_heading p {
        margin-bottom: 15px;
    }

    .vehicle_configurators .vehicle_section_heading h2 {
        margin-bottom: 5px;
    }

    .vehicle_configurators .vehicle_section_heading p i {
        font-style: italic;
        margin-right: 5px;
        font-size: 14px;
    }

    .vehicle_vehicles {
        padding-top: 50px;
    }

    .vehicle_vehicles .vehicle_section_heading {
        background: #fff;
    }

    .vehicle_vehicles .vehicle_section_heading h2 {
        color: #000;
    }

    .vehicle_vehicles .vehicle_section_heading p {
        color: #000;
    }

    .cars_list_item {
        margin-bottom: 0;
    }

    .vehicles_list {
        margin-bottom: 0;
    }

    .vehicle_equipment {
        background: #000;
        position: relative;
        padding: 0;
    }

    .vehicle_equipment .container_fluid {
        padding: 0;
    }

    .vehicle_equipment_bg {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80vh;
        min-height: 600px;
    }

    .vehicle_equipment_bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0.4;
    }

    .vehicle_equipment_bg:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        height: 15%;
        background-image: linear-gradient(rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 2;
    }

    .vehicle_equipment_bg:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 2;
        height: 20%;
    }

    .vehicle_equipment_list {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        color: #fff;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 50px 15px;
        z-index: 2;
    }

    .vehicle_equipment_btn {
        margin-top: 20px;
    }

    .vehicle_equipment_btn .btn {
        width: 100%;
    }

    .vehicle_equipment_list h2 span {
        font-weight: 400;
        text-transform: capitalize;
        letter-spacing: normal;
    }

    .vehicle_equipment .vehicle_section_heading {
        background: transparent;
        padding: 0;
    }

    .vehicle_equipment_equipment {
        overflow-y: auto;
        flex: 1;
        margin-top: 20px;
    }

    .vehicle_equipment_equipment .scroll {
        height: 100%;
        overflow-y: auto;
    }

    .vehicle_equipment_equipment h2 {
        text-transform: uppercase;
        font-size: 18px;
        font-weight: 900;
        line-height: 1.2;
    }

    .vehicle_equipment_equipment h2:before {
        content: '';
        margin-bottom: 20px;
        margin-top: 20px;
        display: block;
        height: 1px;
        background: #747474;
    }

    .vehicle_equipment_equipment h2:after {
        content: '';
        margin-bottom: 20px;
        margin-top: 20px;
        display: block;
        height: 1px;
        background: #747474;
    }

    .vehicle_equipment_equipment h2:first-child:after {
        content: unset;
    }

    .vehicle_equipment_equipment h3 {
        margin-bottom: 15px;
        font-size: 16px;
        font-weight: 900;
        line-height: 1.2;
    }

    .vehicle_equipment_equipment h4 {
        font-size: 14px;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .vehicle_equipment_equipment ul {
        margin: 0 !important;
        padding: 0 !important;
    }

    .vehicle_equipment_equipment h3:before {
        content: '';
        margin-bottom: 20px;
        margin-top: 20px;
        display: block;
        height: 1px;
        background: #747474;
    }

    .vehicle_equipment_equipment h3:first-child:before {
        margin-top: 0;
    }

    .vehicle_equipment_equipment h3:after {
        content: '';
        margin-bottom: 20px;
        margin-top: 20px;
        display: block;
        height: 1px;
        background: #747474;
    }

    .vehicle_equipment_equipment p {
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 400;
        color: rgb(238, 238, 238);
        line-height: 1.4;
    }

    .vehicle_equipment_equipment p > i {
        font-style: italic;
        font-size: 12px;
        opacity: 0.6;
    }

    .vehicle_equipment_equipment p > i * {
        font-style: italic;
        font-size: 12px;
    }

    .vehicle_equipment_equipment li {
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 400;
        color: rgb(238, 238, 238);
        list-style-type: disc;
        margin-left: 30px;
        line-height: 1.4;
    }

    .vehicle_vehicles_heading {
        margin-bottom: 50px;
        text-align: center;
    }

    .vehicle_vehicles_heading h2 {
        font-size: 28px;
        font-weight: 700;
        text-transform: uppercase;

        margin-bottom: 20px;
    }

    .vehicle_vehicles_heading p span {
        font-size: 14px;
    }

    .vehicle_dimensions {
        padding: 50px 0;
    }

    .vehicle_dimensions_images {
        margin-top: 50px;
    }

    .vehicle_dimensions_images img {
        width: 100%;
    }

    .vehicle_dimensions_titles {
        text-align: center;
    }

    .vehicle_dimensions_titles h2 {
        margin-bottom: 20px;
    }

    .vehicle_dimensions_titles p {
        line-height: 1.4;
    }

    .vehicle_dimensions_nav {
        margin: 15px auto 0 auto;
        max-width: 300px;
    }

    .vehicle_dimensions_nav input {
        cursor: pointer;
        margin: 0;
        padding: 0;
    }

    .vehicle_dimensions .vehicle_characteristics_list {
        margin-top: 30px;
    }

    .vehicle_dimensions .vehicle_characteristics_item p:first-child {
        color: #000;
    }

    .vehicle_dimensions .vehicle_characteristics_item p:last-child {
        color: #000;
    }

    .carousel-main-videos {
        display: block;
    }

    .vehicle_menu_lang {
        padding-left: 30px;
        position: relative;
        height: 100%;
    }

    .vehicle_menu_lang * {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .vehicle_menu_lang-current {
        line-height: 42px;
        cursor: pointer;
        text-transform: uppercase;
        font-weight: 500;
    }


    .vehicle_menu_lang-menu {
        position: absolute;
        right: 0;
        top: 42px;
        padding: 15px 0;
        background: #fff;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity .3s, transform .3s;
        z-index: -1;
        box-shadow: 0 0 2px #ccc;
        visibility: hidden;
    }

    .vehicle_menu_lang:hover .vehicle_menu_lang-menu {
        opacity: 1;
        transform: translateY(0);
        z-index: 1;
        visibility: visible;
    }

    .vehicle_menu_lang-menu a {
        display: block;
        color: #000;
        font-weight: 500;
        line-height: 1.8;
        padding-left: 15px;
        padding-right: 15px;
    }

    .vehicle_menu_lang-menu a:hover {
        background: #f6f6f6;
    }

    .vehicle_description {
        padding: 50px 0;
    }

    .vehicle_description h2 {
        margin-bottom: 20px;
    }
}

.lg-outer .lg-object {
    object-fit: cover;
}

.animation-up {
    transform: translateY(50px);
    opacity: 0;
}

.animation-down {
    transform: translateY(-50px);
    opacity: 0;
}

.animation-up.animation-active {
    transition: transform 1s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    opacity: 1;
    transform: translateY(0);
}

.animation-down.animation-active {
    transition: transform 1s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    opacity: 1;
    transform: translateY(0);
}

#vehicle_request_button {
    position: fixed;
    right: 0;
    bottom: 20%;
    z-index: 999;
}

#vehicle_request_button .btn {
    border-radius: 0;
}

#vehicle_request_button .btn svg {
    margin: 0;
}

#vehicle_request_button .btn span {
    display: none;
}


.search {
    padding-top: 120px;
    min-height: 700px;
}

.search h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.search-form--top {
    position: relative;
    display: flex;
    margin-bottom: 40px;
}

.search-form .input_wrap {
    flex: 1;
    margin-bottom: 0;
}


.search-form .button_wrap {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.search-form--top .btn {
    border: unset !important;
    padding: 0;
    width: 55px;

}

.search-filters {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.search-filter input {
    display: none;
}

.search-filter .btn {
    border-radius: unset;
}

.search-filter:not(:first-child) .btn {
    border-left: unset;
}

.search-results .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.search-results-configurators .configurators__list {
    justify-content: flex-start;
    gap: 14px;
}

.search-results-vans .inner {
    margin-bottom: 40px;
}

.search-results-cars .inner {
    margin-bottom: 40px;
}

.search-results-vehicles .inner {
    margin-bottom: 40px;
}

.search-results-configurators .inner {
    margin-bottom: 40px;
}

.search-results-news .inner {
    margin-bottom: 40px;
}

.input_phone {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.input_phone .btn {
    position: absolute;
    padding: 0 15px;
    z-index: 1;
    border: unset;
    border-right: 1px solid #ddd;
}

.input_phone .btn svg {
    width: 10px;
    height: 5px;
}

.input_phone--input {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 5px;
}

.input_phone--input input {
    padding-left: 85px;
}

.input_phone--countries ul {
    height: 100%;
    overflow-y: auto;
}

.input_phone--country {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    cursor: pointer;
    background: #fff;
    transition: background-color .3s;
}

.input_phone--country:hover {
    background: #ddd;
}

.input_phone--country:last-child {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.input_phone--country-dial {
    color: #666;
}

.input_phone--country-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.input_phone--search {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.input_phone--search input {
    border-left: unset;
    border-right: unset;
    border-top: unset;
    border-radius: unset;
    padding-left: 20px;
    padding-right: 20px;
}

.input_phone--countries {
    padding-top: 48px;
}

.header_top {
    padding: 10px;
    background: #000;
}

.header_top_contacts {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: #fff;
}

.header_top_contacts span:first-child {
    font-size: 10px;
}

.header_top_contacts span:last-child {
    font-size: 13px;
    font-weight: 600;
}

.configurator .header_top {
    display: none;
}

.header_top_contacts a {
    display: flex;
    align-items: center;
    gap: 5px;
}

#filters_types {
    margin-bottom: 15px;
}
#filters_stock {
    margin-bottom: 15px;
}


#filters_makes {
    margin-bottom: 15px;
}

#filters_models {
    margin-bottom: 15px;
}

#filters_smodels {
    margin-bottom: 15px;
}

#filters_models_new {
    margin-bottom: 15px;
}

.vehicles_filters-buttons {
    display: flex;
}

.vehicles_filters-button {
    position: relative;
    text-align: center;
    width: 100%;
}

.vehicles_filters-button svg {
    height: 10px;
    width: 10px;
    fill: #008dfc;
    top: -5px;
    position: relative;
}

.vehicles_filters-button-2 {
    width: 50%;
}

.vehicles_filters-button-3 {
    width: 33.333%;
}

.vehicles_filters-button-4 {
    width: 25%;
}

.vehicles_filters-button input {
    display: none;
}


.vehicles_filter label {
    font-weight: 500;
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.vehicles_filters-select select {
    height: 41px;
    font-size: 14px;
    padding: 0 40px 0 10px;
}

.vehicles_filters-select select:disabled {
    opacity: 0.55;
    cursor: no-drop;
}

.vehicles_filters-button label {
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    margin: 0;
}

.vehicles_filters-button label {
    display: block;
    padding: 11px 5px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    cursor: pointer;
}

.vehicles_filters-checkbox label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    height: 20px;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.vehicles_filters-checkbox label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    display: none;
}

.vehicles_filters-checkbox label span {
    font-size: 14px;
    line-height: 14px;
    color: #000;
    display: block;
}

.vehicles_filters-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.vehicles_filters-checkbox label input:checked ~ .checkmark {
    background-color: #0078d6;
    border-color: #0078d6;
}

.vehicles_filters-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.vehicles_filters-checkbox label input:checked ~ .checkmark:after {
    display: block;
}

.vehicles_filters-button:first-child label {
    border-left: 1px solid #ccc;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.vehicles_filters-button:last-child label {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.vehicles_filters-button input:checked + label {
    color: #fff;
    background: #0078d6;
    border-color: #0078d6;
}

.vehicles_filters-button input:checked + label svg {
    fill: #fff;
}

.visible {
    display: block !important;
}

/* accordion */

/* accordion */
.accordion__button {
    display: flex;
    align-items: center;
    cursor: pointer;
}


.accordion__button svg {
    width: 20px;
    height: 20px;
    fill: #000;
}

.accordion__button.active svg {
    transform: rotate(-180deg);
}

.accordion__button, .accordion__panel {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.accordion__panel {
    display: none;
}

.vehicles_filter .accordion__button {
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 0;
}

.accordion__button svg {
    fill: #666;
}

/* accordion */
#filters_params .vehicles_filter.accordion {
    border-top: 1px solid #ddd;
}

#filters_params .vehicles_filter.accordion:last-child {
    border-bottom: 1px solid #ddd;
}

#filters_params .vehicles_filter ul {
    max-height: 200px;
    overflow: auto;
}

#vehicles_not_found {
    padding: 15px;
}

.home_offers .vehicles_list {
    margin-bottom: 15px;
}

.page_form_card {
    padding: 15px;
    background: #f8f8f8;
    margin-bottom: 15px;
}

.page_form_card .input_wrap:last-child {
    margin-bottom: 0;
}

.page_form_card-title {
    font-size: 16px;
}

.page_form_card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.page_form_card-delete {
    cursor: pointer;
}

.page_form_card-delete svg {
    width: 20px;
    height: 20px;
}

.camera_window.active {
    width: 100%;
    margin: auto;
    height: 500px;
}

.scan-result-box {
    padding: 30px;
    border-radius: 16px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.scan-result-box.scan-success {
    background: #16a34a;
    color: #fff;
}

.scan-result-box.scan-warning {
    background: #eab308;
    color: #000;
}

.scan-result-guest-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.scan-result-guest-label.vip {
    background: #fff;
    color: gold;
    border: 1px solid #ccc;
}

.scan-result-guest-label.kids-green {
    background: green;
    color: #fff;
}

.scan-result-guest-label.kids-red {
    background: red;
    color: #fff;
}

.scan-result-guest-label.general {
    background: #000;
    color: #fff;
}

.scan-result-guest-label.press {
    background: blue;
    color: #fff;
}

.scan-result-guest-label.helpers {
    background: yellow;
    color: #000;
}


#klassotic {
    background: #f8f8f8;
    padding-top: 110px;
    min-height: 100vh;
}

#klassotic h1 {
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}


.markets {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin-bottom: 15px;
}

.market {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px #1f20241a;
    transition: box-shadow, .2s ease;
    background: #fff;
}

.market-logo {
    display: flex;
    justify-content: center;
    height: 100px;
    width: 100%;
    margin-bottom: 15px;
}
.market-logo svg{
    max-width: 200px;
    max-height: 100%;
}
.market-name {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}


.tabs-box {
    display: none;
}

.tabs-box.active {
    display: block;
}

.swiper-buttons .swiper-slide {
    width: auto;
    flex-shrink: 0;
}



.mb-5 {
    margin-bottom: 5px;
}
.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}
.p-0, .p-0 * {
    padding: 0;
}
.p-10 *{
    padding: 10px;
}
.p-15 *{
    padding: 15px;
}
.pb-10 {
    padding-bottom: 10px;
}
.pb-20 {
    padding-bottom: 20px;
}
.pr-2 {
    padding-right: 2px;
}

.locations--list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

.location--wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px #1f20241a;
    transition: box-shadow, .2s ease;
    overflow: hidden;
}

.location--image {
    aspect-ratio: 2 / 1;
    background: #f2f2f2;
    width: 100%;
}

.location--image img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.location--main {
    overflow: hidden;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.location--title {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
    color: #0e5db8;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.location--contacts {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.location--contact {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    text-align: center;
    padding: 10px;
    background: #fff;
    height: 50%;
    color: #000 !important;
    font-size: 14px;
    font-weight: 500;
    min-height: 50px;
    border-bottom: 1px solid #ddd;
}

.location--contact span:first-child {
    color: #777
}

.location--contact span:first-child {
    font-size: 11px;
    font-weight: 400;
}

.location--contact span:last-child {
    font-weight: 500;
    font-size: 14px;
}

.location--contacts--phone {
    background: #0e5db8;
    color: #fff;
}
.location--contacts--phone span {
    color: #fff !important;
}

.location--contacts--map {
    background: #fff;

}
.location--details {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.location--detail {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 400;
    color: #666;
}
.svg--stroke {
    stroke-width: 2px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.location--detail svg {
    width: 20px;
    height: 20px;
    color: #999;
}
.location--detail span.link {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
}

.location--facts {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.location--fact {
    font-size: 12px;
    font-weight: 500;
}

.locations-banner .inner{
    position: relative;
    height: 500px;
}

.locations-banner--bg {
    height: 100%;
    position: relative;
}

.locations-banner--bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.locations-banner--bg:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #00000061;
}
.locations-banner--bg:after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 100%) 0%, rgba(0, 0, 0, 0%) 20%);
}
.locations-banner--main {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    padding: 120px 10px 100px 10px;
    display: flex;
    flex-direction: column;
}
.locations-banner--main h1{
    font-size: 32px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    max-width: 800px;
    line-height: 1.2;
    letter-spacing: 1px;
    margin: auto;
    text-align: center;
}
