body{
	padding-top: 80px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
body.subheader-active{
	padding-top: 140px;
}

hr{
    border-top: 1px solid var(--gray-100);
    opacity: 1;
}

.longtext a{color: var(--primary);}

.ti {
    font-size: 22px;
}

#content-overlay{
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 700;
	background-color: rgba(0,0,0,0);
	transition: all .3s .1s;
	pointer-events: none;
}
#content-overlay.active{
	background-color: rgba(0,0,0,0.5);
}

#content-overlay-clickable{
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 700;
	background-color: rgba(0,0,0,.5);
	display: none;
	cursor: pointer;
}

#navpanel-overlay{
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 820;
	background-color: rgba(0,0,0,.5);
	display: none;
	cursor: pointer;
}

#loader{
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1300;
	background-color: rgba(255,255,255,0.4);
	display: none;
}

.default-margins.xs > *{margin-bottom: var(--size-xs);}
.default-margins > *{margin-bottom: var(--size-sm);}
.default-margins.md > *{margin-bottom: var(--size-md);}
.default-margins > *:last-child{margin-bottom: 0;}



.video-wrapper{
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background-color: var(--gray-100);
	display: block;
}
.video-wrapper::after{
	content:"\f04b";
	font-family: "Font Awesome 6 free";
	font-weight: 900;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100px;
	height: 100px;
	background-color: var(--primary);
	border-radius: 50%;
	text-align: center;
	line-height: 100px;
	color: #fff;
	font-size: var(--f-size-h5);
	z-index: 3;
}
.video-wrapper::before{
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 120px;
	height: 120px;
	border: 3px solid var(--primary);
	border-radius: 50%;
	z-index: 3;
	transition: transform .5s ease;
}
.video-wrapper:hover::before{
	transform: scale(1.1);
}
.video-wrapper img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(1);
	transition: filter .5s ease;
}
.video-wrapper:hover img{
	filter: brightness(.8);
}

.fhd-wrapper{
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background-color: var(--gray-100);
	display: block;
}
.fhd-wrapper img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.active-loader::after{
	content:"";
	width:42px;
	height:42px;
	position:absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index:1;
	box-sizing:border-box;
	border:4px solid var(--primary);
	border-radius:50%;
	border-top-color:transparent;
	animation: loader 1s infinite linear;
}
@keyframes loader{
	0%{transform:rotate(0deg);}
	100%{transform:rotate(360deg);}
}


/* tablist */
.tablist{
	display: flex;
	justify-content: center;
}
.tablist .tab{
	padding: var(--size-md) var(--size-sm);
	color: var(--gray-300);
	font-weight: 600;
	transition: color .3s;
	cursor: pointer;
	position: relative;
	user-select: none;
}
.tablist .tab::after{
	position: absolute;
	content: "";
    /*width: calc(100% - var(--size-sm) - var(--size-sm));*/
    width: 100%;
    left: 0;
    bottom: 0;
    /*left: var(--size-sm);*/
    height: 3px;
    background-color: var(--dark);
    transition: transform 0.3s;
    transform: scaleX(0);
    transform-origin: right;
}
.tablist .tab.active::after{
	transform: scaleX(1);
    transform-origin: left;
}
.tablist .tab.active{
	color: var(--dark);
}
.tablist .tab:hover{
	color: var(--dark);
}
.tabgroup .content{
	display: none;
}
.tabgroup .content.active{
	display: block;
}
/* end */



/* defaults */
.dropdown-menu{
	border-radius: var(--radius-inside);
	padding: 0;
	border: 0;
    border-radius: var(--radius-main);
    background-color: transparent;
}
.dropdown-menu .content{
	animation: menuFadeUp .3s;
	padding: calc(.5 * var(--size-xs));
    border-radius: var(--radius-inside);
    box-shadow: 0 2px 15px -5px rgba(0,0,0,.3);
    background-color: #fff;
    overflow: hidden;
}
@keyframes menuFadeUp {
	0%   {transform: translateY(10px);opacity: 0;}
	100% {transform: translateY(0px);opacity: 1;}
}
.dropdown-menu .dropdown-item{
	border-radius: var(--radius-inside);
	cursor: pointer;
	padding: 5px var(--size-sm);
}
.dropdown-menu .dropdown-item:hover{
	background-color: var(--light);
}
.dropdown-menu .dropdown-item.active{
	background-color: var(--primary);
}
.dropdown-menu .dropdown-item:active{
	background-color: var(--light);
	color: initial;
}
/* end */


.swiper-pagination{
	bottom: var(--size-md)!important;
}
body .swiper-pagination-bullet{
	background-color: #fff;
	width: 12px;
	height: 12px;
}





/* header */
header{
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	height: 80px;
	background-color: #fff;
	border-bottom: 1px solid var(--light);
	z-index: 800;
}
header > .block{
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
	justify-content: flex-end;
}
header .logo{
	position: absolute;
	top: 0;
	left: var(--block-padding);
	bottom: 0;
	height: 32px;
	margin: auto 0;
}
header .logo img{
	height: 100%;
	width: auto;
}

header nav{
	height: 100%;
}
header nav .items{
	display: flex;
	height: 100%;
}
header nav .items .item-wrapper{
	padding: 0 var(--size-sm);
	height: calc(100% + 1px);
	display: flex;
	align-items: center;
}
header nav .items .item:not(a){
	cursor: default;
}
header nav .items .item{
	font-weight: 600;
	transition: color .3s;
}
header nav .items a.item:hover{
	color: var(--primary);
}
header nav .items .item i{
	font-size: var(--f-size-sm);
	color: var(--gray-100);
	margin-left: var(--size-xs);
}

header nav .items .submenu{
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	height: auto;
	visibility: hidden;
	overflow: hidden;
}
header nav .items .submenu-wrapper:hover .submenu{
	visibility: visible;
}
header nav .items .submenu-wrapper:hover .item{
	color: var(--primary);
}

header nav .items .submenu-wrapper .submenu .submenu-content{
	background-color: #fff;
	padding-top: var(--size-lg);
	padding-bottom: var(--size-lg);
	opacity: 0;
	transform: translateY(-10px);
	transition: all .2s;
}
header nav .items .submenu-wrapper:hover .submenu-content{
	opacity: 1;
	transform: translateY(0px);
}

header nav .items .submenu-wrapper .submenu .model-item img{
	transition: transform .3s;
	width: 100%;
	height: 140px;
	object-fit: contain;
}
header nav .items .submenu-wrapper .submenu .model-item:hover img{
	transform: scale(1.03);
}

header > .block .right {
    display: flex;
    align-items: center;
    margin-left: var(--size-md);
}
header > .block .right .btn-default {
    display: flex;
    align-items: center;
    padding: 12px 16px;
}
header > .block .right .btn-default i {
    margin-right: 5px;
}

.header-actions {
    margin-left: var(--size-sm);
    align-items: center;
    display: flex;
}

#hamburger{
	flex-direction:column;
	width:32px;
	cursor:pointer;
	pointer-events: unset;	
	left: unset;
	padding: 3px 5px;
	display: none;
	margin-bottom: 0;
	margin-left: 10px;
}
#hamburger span{
	background: #000;
	border-radius:10px;
	height:2px;
	margin: 2.5px 0;
	transition: all .4s  ;
}
#hamburger span:nth-of-type(1){
	width:50%;
}
#hamburger span:nth-of-type(2){
	width:100%;
}
#hamburger span:nth-of-type(3){
	width:75%;
}
#hamburger input[type="checkbox"]{
	display:none;
}
#hamburger input[type="checkbox"]:checked ~ span:nth-of-type(1){
	transform-origin:bottom;
	transform:rotatez(45deg) translate(14px,1px)
}
#hamburger input[type="checkbox"]:checked ~ span:nth-of-type(2){
	transform-origin:top;
	transform:rotatez(-45deg)
}
#hamburger input[type="checkbox"]:checked ~ span:nth-of-type(3){
	transform-origin:bottom;
	width:50%;
	transform: translate(2px,-11px) rotatez(45deg);
}

.sidepanel-nav{
	position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    max-width: 340px;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1052;
    transform: translateX(100%);
    transition: transform 400ms cubic-bezier(0.645, 0.045, 0.355, 1);
    display: flex;
    flex-direction: column;
    overflow: auto;
}
.sidepanel-nav .nav-wrapper {
    padding: var(--size-md);
}
.sidepanel-nav .md-nav-bottom {
    margin-top: auto;
    padding: 0 var(--size-md) var(--size-md) var(--size-md);
}
.sidepanel-nav.active {
    transform: translateX(0);
}
.sidepanel-nav .nav-content{
	padding: var(--size-md);
}
.sidepanel-nav .main-item{
	font-size: var(--f-size-h3);
	font-weight: 600;
	padding: var(--size-xs) 0;
	color: #fff;
}
.sidepanel-nav .main-item a{color: #fff;transition: color .3s;}
.sidepanel-nav .main-item a:hover{color: var(--primary);}
.sidepanel-nav .main-item a.active{color: var(--primary);}

.sidepanel-nav .submenu-item-wrapper .main-item{
	cursor: pointer;
	transition: color .3s;
	position: relative;
}
.sidepanel-nav .submenu-item-wrapper .main-item:hover{color: var(--primary);}
.sidepanel-nav .submenu-item-wrapper .main-item.active{color: var(--primary);}
.sidepanel-nav .submenu-item-wrapper .main-item i{
	font-size: 18px;
	width: 18px;
	height: 18px;
	position: absolute;
	margin: auto 0;
	top:0;
	bottom:0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #292f34;
}
.sidepanel-nav .submenu-item{
	font-size: var(--f-size-h6);
	font-weight: 600;
	padding: var(--size-xs) 0;
	color: #fff;
	transition: color .3s;
	display: block;
}
.sidepanel-nav .submenu-item:hover{color: var(--primary);}
.sidepanel-nav .submenu-item.active{color: var(--primary);}

.sidepanel-nav .sidepanel-nav-close{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: auto;
    margin-right: var(--size-sm);
    margin-top: var(--size-md);
    color: var(--primary);
    font-size: 24px;
}

.sidepanel-nav .submenu-content{
	padding-left: var(--size-sm);
	display: none;
}

.sidepanel-nav .sidepanel-nav-bottom{
	margin-top: auto;
	color: #fff;
	padding: var(--size-md);
}


.sidepanel-nav .sidepanel-nav-bottom-content{
	border-top: 1px solid #292f34;
	padding-top: var(--size-md);
}

.sidepanel-nav .sidepanel-nav-bottom .contacts a{
	color: #fff;
	display: flex;
	font-weight: 500;
	align-items: center;
	font-size: var(--f-size-sm);
	padding: 5px 0;
}
.sidepanel-nav .sidepanel-nav-bottom .contacts a i{
	margin-right: var(--size-xs);
	font-size: var(--f-size-h6);
}
.sidepanel-nav .sidepanel-nav-bottom .socials a{
	color: #fff;
	font-size: var(--f-size-h3);
	padding:0 4px;
}
.sidepanel-nav .sidepanel-nav-bottom .semibold{
	margin-bottom: 3px;
}
/* end */




/* subheader */
.page-subheader{
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	background-color: var(--dark);
	height: 60px;
	color: #fff;
	z-index: 790;
}
.page-subheader .block{
	height: 100%;
}
.page-subheader .block .row{
	height: 100%;
	align-items: center;
}
.page-subheader .title a{
	font-weight: 700;
	font-size: var(--f-size-h6);
	color: #fff;
	padding: 0;
}
.page-subheader .subheader-nav{
	display: flex;
}
.page-subheader .roll-out{
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	cursor: pointer;
}
.page-subheader .roll-out.active{
	transform: rotate(180deg);
}
.page-subheader a{
	color: var(--gray-200);
	font-size: var(--f-size-sm);
	font-weight: 600;
	padding: 0 var(--size-sm);
	transition: color .3s;
}
.page-subheader a.active{
	color: #fff;
}
.page-subheader a:hover{color: #fff;}
/* end */















/* footer */
footer{
	margin-top: auto;
	color: #fff;
	background-color: var(--dark);
}
footer .main{
	padding-top: var(--size-xl);
	padding-bottom: var(--size-xl);
}
footer .bottom{
	padding-bottom: var(--size-lg);
}
footer .menu{
	list-style-type: none;
	margin:0;
	padding: 0;
}
footer .menu li{
	margin-bottom: var(--size-sm);
}
footer .menu li:last-child{
	margin-bottom: 0;
}
footer .menu a{
	color: var(--gray-200);
	font-weight: 500;
	transition: color 0.3s;
}
footer .menu a:hover{
	color: #fff;
}
footer hr{
	border-top: 1px solid #292f34;
	margin-top: 0;
	padding-top: var(--size-lg);
	margin-bottom: 0;
	opacity: 1;
}
footer .contacts > div{
	margin-bottom: var(--size-xs);
}
footer .contacts > div:last-child{
	margin-bottom: 0;
}
footer .item{
	display: inline-flex;
	align-items: center;
	color: var(--gray-100);
	font-weight: 500;
}
footer .item span{
	transition: color 0.3s;
}
footer .item:hover span{
	color: #fff;
}
footer .item i{
	margin-right: var(--size-xs);
	font-size: var(--f-size-h6);
	color: #fff;
}
footer .socials .item i{
	font-size: var(--f-size-h4);
	transition: color 0.3s;
}
footer .socials .item:hover i{
	color: var(--primary);
}
footer .label{
	font-weight: 600;
}
footer .logo{max-width: 120px;width: 100%;}


footer .bottom-menu{
    display: flex;
    align-items: center;
    justify-content: right;
    flex-wrap: wrap;
}
footer .bottom-menu a{
	color: var(--gray-200);
	font-weight: 500;
	transition: color 0.3s;
	font-size: var(--f-size-sm);
}
footer .bottom-menu a:hover{
	color: #fff;
}
/* end */








/* slider */
.slider-range-wrapper{
	margin-top: calc(7px + var(--size-xs));
}
:focus-visible{outline: 0;}
.ui-slider {
    background-color: #4d4d4d;
    height: 5px;
    background-image: none;
    border: 0;
    width: calc(100% - 20px);
    margin-left: 10px;
}
.ui-slider {
    -webkit-box-ordinal-group: 2;
    order: 1;
    border: 0;
    margin-top: 7.5px;
    margin-bottom: 7.5px;
    position: relative;
}
.ui-slider::before{
	content:"";
	position: absolute;
	top:0;
	left: -9px;
	right: -9px;
	bottom: 0;
	background-color: var(--gray-100);
}
.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0;
}
.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
    width: calc(100% + 20px);
    left: -9px;
    background: #bbbbbb;
}

.ui-slider .ui-slider-range {
    background-color: #1c69d4;
    background-image: none;
}
.ui-widget.ui-widget-content{
	border:0;
}
.ui-slider-horizontal .ui-slider-handle{
	background: #fff;
	border: 2px solid var(--primary);
	border-radius: 0px;
	width: 19px;
	height: 19px;
	top: -7px;
	margin-left: -10px;
	border-radius: 50%;
}
.slider-range-values{
	margin-top: var(--size-sm);
}
.slider-range-values input{
	width: 100%;
	border:0;
	outline: 0;
}
.slider-range-values .col-6:last-child{text-align: right;}
/* end */



/* listing */
.vehicles-listing .img-wrapper{
	padding-bottom: 56.25%;
	display: block;
	margin-bottom: var(--size-sm);
	position: relative;
}
.vehicles-listing .img-wrapper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
}
.vehicles-listing .item{
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.vehicles-listing .item .badges-wrapper{
	position: absolute;
	top: var(--size-xs);
	left: var(--size-xs);
	z-index: 5;
}
.vehicles-listing .item .badges-wrapper .badge{
	margin-bottom: 4px;
}

.badges-wrapper-bottom{
	position: absolute;
	bottom: var(--size-xs);
	left: var(--size-xs);
	right: var(--size-xs);
	z-index: 5;
}
.badges-wrapper-bottom .badge{
	max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.listing-categories{
	margin-bottom: var(--size-lg);
}
.listing-categories .items a{
	font-size: var(--f-size-h6);
	font-weight: 500;
}
.listing-categories .items a span{
	margin-left: 3px;
	color: var(--gray-200);
}
.listing-categories .items a:hover{
	color: var(--primary);
}
.listing-categories .items a.active{
	color: var(--primary);
}
.listing-categories .items > *{
	display: block;
	margin-bottom: var(--size-xs);
}
.listing-categories .items > *:last-child{
	margin-bottom: 0;
}

.listing-categories-buttons{
	display: none;
}
.listing-categories-buttons .btn-default{
	width: 100%;
	text-align: center;
}

.md-panel{
	position: relative;
}
.md-panel .md-panel-close{
	position: absolute;
	top: var(--size-sm);
	right: var(--size-sm);
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	cursor: pointer;
}
.md-panel .md-panel-close i{
	font-size: 22px;
	color: var(--primary);
}

.filter-group{
	margin-bottom: var(--size-sm);
	padding-bottom: var(--size-sm);
	border-bottom: 1px solid var(--gray-100);
	position: relative;
}
.filter-group:last-child{
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}
.filter-group .title{
	font-weight: 600;
	margin-bottom: var(--size-xs);
}
.filter-group .items .item{
	padding-left: 1.6rem;
	min-height: 1rem;
	margin-bottom: var(--size-xs);
}
.filter-group .items .item:last-child{
	margin-bottom: 0;
}
.filter-group .items .item label{
	line-height: 1.3;
	user-select: none;
}
.filter-group .items .item input{
	top: 0;
	margin-top: 0;
	margin-left: -1.6em;
}

.filter-group .reset{
	display: flex;
	align-items: center;
	font-size: var(--f-size-xs);
	font-weight: 500;
	position: absolute;
	top: 3px;
	right: 0;
	cursor: pointer;
	color: var(--gray-200);
	transition: color .3s, opacity .3s;
	opacity: 0;
	pointer-events: none;
}
.filter-group .reset.active{
	opacity: 1;
	pointer-events: initial;
}
.filter-group .reset i{
	font-size: 16px;
	margin-right: 4px;
	display: none;
}
.filter-group .reset:hover{
	text-decoration: underline;
	color: var(--gray-400);
}

.col-products-list .top-wrapper{
	margin-bottom: var(--size-sm);
	border-bottom: 1px solid var(--gray-100);
	padding-bottom: var(--size-sm);
	font-size: var(--f-size-sm);
}
.col-products-list .top-wrapper .row{
	align-items: center;
}
.ordering .dropdown-toggle{
	background-color: transparent;
	border: 0;
	outline: 0;
	padding: 0;
	font-weight: 600;
}

.pagination{
	margin-top: var(--size-lg);
	justify-content: center;
}
.pagination > *{
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-inside);
	padding: var(--size-xs);
}
.pagination a{
	color: var(--dark);
	border:0;
	box-shadow: unset!important;
	font-weight: 500;
}
.pagination a:focus{
	background-color: transparent;
	color: var(--dark);
}
.pagination a:hover{
	background-color: var(--light);
	color: var(--dark);
}
.pagination a.active{
	color: #fff;
	background-color: var(--primary);
}
.pagination .prev{
	margin-left: var(--size-xs);
}
.pagination .next{
	margin-right: var(--size-xs);
}
.pagination .disabled{
	opacity: .5;
}
/* end */


/* vehicle */
.breadcrumbs{
	padding: 10px 0;
	border-bottom: 1px solid var(--light);
	font-size: var(--f-size-sm);
	margin-bottom: var(--size-sm);
}
.breadcrumbs a{
	transition: color .2s;
}
.breadcrumbs i{
	vertical-align: middle;
	margin-left: 4px;
	margin-right: 3px;
	font-size: 10px;
}
.breadcrumbs a:hover{
	text-decoration: underline;
	color: var(--primary);
}
.breadcrumbs .title{
	display: inline-block;
}

.vehicle-page .main-wrapper{
	/*background-color: var(--dark);
	padding-bottom: var(--size-lg);*/
}
.vehicle-page .main-wrapper *{
	/*color: #fff;*/
}
.vehicle-page .main-wrapper{
	padding-top: var(--size-md);
	padding-bottom: var(--size-md);
}
.vehicle-page .main-wrapper .breadcrumbs{
	border-bottom: 0px solid #292f34;
	margin-bottom: var(--size-lg);
	margin-top: var(--size-md);
	font-size: var(--f-size-xs);
}
.vehicle-page .main-wrapper .breadcrumbs *{
	color: var(--gray-200);
}

.vehicle-page .main-wrapper .vehicle-title{
	font-weight: 600;
	margin-bottom: 0;
	max-width: 700px;
}

.vehicle-page .prices{
}
.vehicle-page .prices .discounted{
	display: flex;
	align-items: flex-end;
}
.vehicle-page .prices .discounted .crossed{
	margin-left: var(--size-sm);
}

.vehicle-page .vehicle-content .img-wrapper{
	background-color: var(--gray-100);
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-inside);
}
.vehicle-page .vehicle-content .img-wrapper img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
}
.vehicle-page .vehicle-content .img-wrapper img.slick-loading{
	opacity: 0;
}





.vehicle-page .vehicle-content .img-title{
	margin-bottom: var(--size-sm);
	overflow: hidden;
}
.vehicle-page .vehicle-content .img-title .slick-list{
	width: calc(100% + 2*var(--size-xs));
	margin-left: calc(-1 * var(--size-xs));
}
.vehicle-page .vehicle-content .img-title .item{
	position: relative;
	height: 100%;
	margin: 0 var(--size-xs);
}

.vehicle-page .vehicle-content .img-title a{
	position: absolute;
	top: var(--size-xs);
	right: var(--size-xs);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	background-color: #fff;
}
.vehicle-page .vehicle-content .img-title a i{
	font-size: 16px;
}
.vehicle-page .vehicle-content .open-gallery{
	position: absolute;
	bottom: var(--size-sm);
	right: var(--size-sm);
	display: flex;
	align-items: center;
}
.vehicle-page .vehicle-content .open-gallery i{
	margin-right: var(--size-xs);
	
}

.vehicle-page .vehicle-content .collections-wrapper{
	position: absolute;
	left: var(--size-sm);
	top: var(--size-sm);
	right: var(--size-sm);
	display: flex;
	align-items: center;
	pointer-events: none;
	flex-wrap: wrap;
}
.vehicle-page .vehicle-content .collections-wrapper .badge{
	margin-right: var(--size-xs);
	margin-bottom: var(--size-xs);
}

.vehicle-page .gallery{
	margin-bottom: var(--size-lg);
}
.vehicle-page .gallery .items{
	overflow: hidden;
}
.vehicle-page .gallery .items .slick-list{
	width: calc(100% + 2*var(--size-xs));
	margin-left: calc(-1 * var(--size-xs));
}
.vehicle-page .gallery .item{
	margin: 0 var(--size-xs);
}
.vehicle-page .gallery .item .img-wrapper{
	cursor: pointer;
}

.vehicle-page .md-buttons{
	display: none;
	margin-bottom: var(--block-mb-sm);
}



.vehicle-page{
	/*background-color: var(--light);*/
}
.vehicle-page .sticky-panel{
	position: sticky;
	top: calc(80px + var(--size-sm));
}
.vehicle-page .border-panel{
	border:1px solid var(--gray-100);
	padding: var(--size-md);
	margin-bottom: var(--size-sm);
	border-radius: 10px;
	background-color: #ffffff;
	box-shadow: 0 6px 12px -2px rgba(0,0,0,.05);
}

.vehicle-page .basic-parameters .row{
	/*align-items: center;*/
}
.vehicle-page .basic-parameters .row > .col-title{
	display: flex;
	align-items: center;
	color: var(--gray-400);
}
.vehicle-page .basic-parameters i{
	margin-right: calc(.75 * var(--size-xs));
}

.vehicle-page .help-panel{
	border-color: var(--primary);
	background-color: var(--primary);
	color: #fff;
}
.vehicle-page .help-panel .col{
	display: flex;
	align-items: center;
}
.vehicle-page .help-panel .col a{
	display: flex;
	align-items: center;
	color: #fff;
}
.vehicle-page .help-panel .col a span{
	font-size: var(--f-size-sm);
	font-weight: 600;
	margin-left: 3px;
}
.vehicle-page .help-panel .col a:hover span{
	text-decoration: underline;
}

.product-collection{
	position: relative;
	min-height: 240px;
	display: flex;
    align-items: flex-end;
}
.product-collection .bg-wrapper{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	border-radius: 10px;
}
.product-collection .bg-wrapper::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(30deg, rgba(var(--dark-rgb), 1) 0%, rgba(var(--dark-rgb), 1) 30%, rgba(var(--dark-rgb), 0) 80%);
}
.product-collection .bg-wrapper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-collection .content-wrapper{
	position: relative;
	z-index: 4;
	color: #fff;
}



.equipment .item{
	position: relative;
	padding-left: calc(var(--size-md) + 2px);
}
.equipment .item::before{
	position: absolute;
	content: "\f00c";
	font-family: "Font Awesome 6 free";
	font-weight: 900;
	left: 0;
	top: 3px;
	color: var(--primary);
}
.equipment .section-equipment{
	margin-bottom: var(--size-sm);
	padding-bottom: var(--size-sm);
	border-bottom: 1px solid var(--gray-100);
}
.equipment .section-equipment:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.link-back{
	display: inline-flex;
	align-items: center;
}
.link-back i{
	margin-right: var(--size-xs);
	transition: transform .3s;
}
.link-back span{
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: var(--f-size-xs);
	font-weight: 600;
}
.link-back:hover{
	color: var(--primary);
}
.link-back:hover i{
	transform: translateX(-5px);
}
/* end */






/* c: main-text */
.main-text.dark{
	background-color: var(--dark);
	padding-top: var(--block-mb);
	padding-bottom: var(--block-mb);
}
.main-text.dark h5{color: var(--gray-200)!important;}
.main-text.dark h2{color: #fff;}
.main-text.dark .longtext{color: #fff;}
/* end */


/* c: text-image */
.text-image.bgc-light .col-text{
	background-color: var(--light);
}
.text-image .col-text{
	display: flex;
	align-items: center;
	padding: var(--size-xl) calc(.75 * var(--size-xl));
}
.text-image .col-img .media-wrapper{
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 300px;
}
.text-image .col-img img,.text-image .col-img video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	z-index: 2;
}
.text-image .col-img .media-wrapper.image-contain img{
	object-fit: contain;
}
.text-image.left-image .col-img{order: 1;}
.text-image.left-image .col-text{order: 2;}

.text-image.bgc-dark .col-text{
	background-color: var(--dark);
}
.text-image.bgc-dark .col-text .gray-300{
	color: var(--gray-200);
}
.text-image.bgc-dark .col-text h2{
	color: #fff;
}
/* end */


/* c:carousel-img */
.carousel-img{
	--height: 540px;
}
.carousel-img .swiper-slide{
	height: var(--height);
	position: relative;
	overflow: hidden;
}
.carousel-img .img-wrapper{
	position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.carousel-img .img-wrapper img{
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
.carousel-img > .block{
	
}

.carousel-img .swiper.desc{
	position: absolute;
	height: 60px;
	left: 0;
	right: 0;
	bottom: calc(var(--size-lg) + var(--size-sm));
	pointer-events: none;
}
.carousel-img .swiper.desc .swiper-slide{
	height: 60px!important;
}
.carousel-img .swiper.desc .block{
	top:0;
	bottom:0;
	height: 24px;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 5;
	color: #fff;
	font-weight: 700;
	text-align: center;
}
.carousel-img .swiper.desc .block *{
	margin-bottom: 0;
}

.carousel-img.titles-active .img-wrapper::after{
	content:"";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: linear-gradient(0deg, rgba(var(--dark-rgb), .8) 0%, rgba(var(--dark-rgb), 0) 100%);
}
/* end */


/* c:cards */
.cards video{
	display: block;
}
.cards .media-wrapper{
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background-color: var(--gray-100);
	display: block;
}
.cards .media-wrapper img,.cards .media-wrapper video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	z-index: 2;
}

.cards .media-wrapper.static-full{
	padding-bottom:100%;
}
.cards .media-wrapper.static-full img{
	/*position: relative;*/
}


.cards .col-item{
	display: flex;
	flex-direction: column;
}
.cards.text-bg .default-margins{
	background-color: var(--light);
	padding: var(--size-md);
	flex:1;
}

.cards.text-bg .col-item.two .default-margins{
	padding: var(--size-lg);
}

.cards .arrow{
	display: flex;
	align-items: center;
	font-weight: 600;
}
.cards .arrow i{
	margin-left: var(--size-xs);
	transition: transform .3s;
}
.cards .col-item > a:hover .arrow i{
	transform: translateX(5px);
}
/* end */


/* c:lightbox-yt */
.lightbox-yt.wide .video-wrapper{
	height: 540px;
	padding-bottom: 0;
}
/* end */


/* c:title-wrapper */
.title-wrapper{
	padding: var(--size-xl) 0;
	border-bottom: 1px solid var(--light);
	background-color: var(--dark);
	position: relative;
}
.title-wrapper *{
	color: #fff;
}
.title-wrapper .image-wrapper{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.title-wrapper .image-wrapper::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(29,37,44,1) 0%, rgba(29,37,44,1) 35%, rgba(29,37,44,0) 75%);
}
.title-wrapper .image-wrapper img{
	width: 70%;
	height: 100%;
	object-fit: cover;
	object-position: right;
	left: 30%;
	position: relative;
}

.title-wrapper .media-wrapper{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.title-wrapper .media-wrapper::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(29,37,44,1) 0%, rgba(29,37,44,1) 35%, rgba(29,37,44,0) 75%);
	z-index: 3;
}
.title-wrapper .media-wrapper img{
	width: 70%;
	height: 100%;
	object-fit: cover;
	object-position: right;
	left: 30%;
	position: relative;
	z-index: 2;
}
.title-wrapper .media-wrapper video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right;
	position: relative;
	z-index: 2;
}

.title-wrapper .block{
	position: relative;
	z-index: 2;
}

.title-wrapper.simple{
	background-color: transparent;
	padding: var(--block-mb) 0;
	border-bottom: 0;
}
.title-wrapper.simple .spacer{
	border-bottom: 1px solid var(--gray-100);
	padding-top: var(--size-lg);
}
.title-wrapper.simple h1{
	margin-bottom: 0;
	color: var(--dark);
}
.title-wrapper.simple .gray-300{
	color: var(--gray-300);
}
/* end */


/* c:main-gallery */
.main-gallery .wrapper{
	display: block;
	height: 40vh;
	position: relative;
	overflow: hidden;
}
.main-gallery .wrapper img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}
.main-gallery .wrapper:hover img{
	transform: scale(1.02);
}
/* end */


/* c:vehicle-color-variants */
.vehicle-color-variants .variant-images{
	position: relative;
    overflow: hidden;
    padding-bottom: 35.75%;
    display: flex;
    justify-content: center;
}
.vehicle-color-variants .variant-images img{
    opacity: 0;
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    pointer-events: none;
    transition: all .3s;
}
.vehicle-color-variants .variant-images img.active {
    opacity: 1;
    transition: all .3s;
}

.vehicle-color-variants .variant-colors{
	display: flex;
	justify-content: center;
	height: 60px;
	align-items: flex-end;
	margin-bottom: var(--size-md);
	margin-top: var(--size-sm);
}
.vehicle-color-variants .variant-colors .item{
	min-width: 50px;
	width: 50px;
	height: 50px;
	position: relative;
	cursor: pointer;
	transition: height .3s ease;
	transform-origin: bottom;
}
.vehicle-color-variants .variant-colors .item img{
	width: 100%;
	height: 100%;
}
.vehicle-color-variants .variant-colors .item::after{
	content: "";
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgb(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 90%);
}
.vehicle-color-variants .variant-colors .item:hover{
	height: 60px;
}
.vehicle-color-variants .variant-colors .item.active{
	height: 60px;
}

.vehicle-color-variants .variant-names{
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.vehicle-color-variants .variant-names .item{
	font-weight: 700;
	font-size: var(--f-size-h5);
	text-align: center;
	position: absolute;
	opacity: 0;
	transform: translateY(10px);
	transition: all .3s;
}
.vehicle-color-variants .variant-names .item.active{
	opacity: 1;
	transform: translateY(0px);
}

.vehicle-color-variants.interior .variant-images{
	margin-bottom: var(--size-sm);
}
/* end */



/* articles-listing */
.articles-listing .media-wrapper{
	margin-bottom: var(--size-sm);
}
.articles-listing .video-wrapper::before{
	width: 65px;
	height: 65px;
	border-width: 2px;
	display: none;
}
.articles-listing .video-wrapper::after{
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: var(--f-size-main);
}
.articles-listing .promo{
	margin-bottom: var(--size-md);
	padding-bottom: var(--size-md);
	border-bottom: 1px solid var(--gray-100);
}
.articles-listing .promo .content-wrapper > a{display: block;}
/* end */

/* articles-list-vertical */
.articles-list-vertical .item{
	border-bottom: 1px solid var(--light);
	padding-bottom: var(--size-sm);
}
.articles-list-vertical .item:last-child{
	border-bottom: 0;
	padding-bottom: 0;
}
.articles-list-vertical .media-wrapper{
	position: relative;
    width: 100%;
    padding-bottom: 100%;
    background-color: var(--gray-100);
    display: block;
    margin-bottom: 0;
}
.articles-list-vertical .media-wrapper img{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* end */


/* article detail */
.article-detail-title{
	padding: var(--block-mb) 0;
}
.article-content{
	margin-bottom: var(--block-mb);
}
.article-content .block{
	max-width: var(--block-xs);
}
.article-content .carousel-img .swiper[data-items="1"] .swiper-slide{height: auto;}
.article-content .carousel-img .swiper[data-items="1"] .img-wrapper{position: static;}

.article-content .text-image .col-img{width: 30%;}
.article-content .text-image .col-img .media-wrapper{min-height: 200px;}
.article-content .text-image .col-text{width: 70%;padding:var(--size-md);}
.article-content .text-image .col-text h2{font-size: var(--f-size-h4);}
/* end */


/* section-title-carousel */
.section-title-carousel .swiper-slide{
	position: relative;
	overflow: hidden;
}
.section-title-carousel .img-wrapper{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.section-title-carousel .img-wrapper::after{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(90deg, rgba(var(--dark-rgb), 1) 0%, rgba(var(--dark-rgb), 0.5) 30%, rgba(var(--dark-rgb), 0) 50%, rgba(var(--dark-rgb), 0) 100%);
}
.section-title-carousel .img-wrapper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section-title-carousel .block{
	min-height: 500px;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
}
.section-title-carousel .default-margins{
    max-width: 600px;
    color: #fff;
}
/* end */


/* forms */
.form-field{
	position: relative;
}
.form-field label{
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear .3s, opacity .3s;
    position: absolute;
    color: #5c6163;
    font-size: .706em;
    line-height: 1.8;
    padding: 0 5px;
    left: 20px;
    top: -9px;
}
.form-field label:before{
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    top: 8.7px;
    z-index: -1;
    left: 0;
    background: #fff;
}
.form-field label.required::after {
    content: "*";
    position: relative;
    font-size: inherit;
    padding-left: 3px;
    font-weight: 600;
}

.form-field.filled label{
	visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity .3s;
    z-index: 1;
}

.input-default{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    border: 1px solid #d2d3d3;
    border-radius: 5px;
    height: 50px;
    padding: 0 var(--size-md);
    width: 100%;
    transition: border .3s;
}
.input-default:focus{
	border: 1px solid #000;
}
select.input-default{
	cursor: pointer;
}

.form-field .helper{
	color: #e22828;
	font-size: var(--f-size-xs);
	font-weight: 600;
	display: none;
}
.form-field .helper.active{
    display: block;
	margin-top: var(--size-xs);
}

.form-field.error .input-default{
	border-color: #e22828;
}

.form-field .select-wrapper{
	position: relative;
}
.form-field .select-wrapper::before{
	content: "";
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 18px;
    height: 10px;
    width: 10px;
    z-index: 1;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    pointer-events: none;
}
.form-field .select-wrapper::after{
	content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    border-radius: 0 5px 5px 0;
    background: #1971d4;
    pointer-events: none;
}

.select-slider .select-wrapper::before,.select-slider .select-wrapper::after{
	display: none;
}
.select-slider .select-wrapper select{
	display: none;
}
.select-slider .legend{
	display: flex;
	justify-content: space-between;
	padding: 6px 6px 0 6px;
	color: var(--gray-200);
	font-size: var(--f-size-xs);
}
.select-slider .selected{
	color: var(--primary);
	font-weight: 600;
}
.select-slider .selected .price{
	color: var(--gray-200);
	font-weight: 600;
	float: right;
}
.select-slider .mb-label{
	margin-bottom: 12px;
}

.form-field textarea{
	padding-top: var(--size-sm);
	padding-bottom: var(--size-sm);
	min-height: 120px;
}

.relative-checkbox-wrapper{
	position: relative;
}
.relative-checkbox-wrapper label{
	cursor: pointer;
}
.relative-checkbox-wrapper input{
	position: absolute;
	top: 0px;
}
.relative-checkbox-wrapper .label{
	padding-left: calc(22px + var(--size-xs));
	padding-top: 1px;
	font-size: var(--f-size-sm);
}
.relative-checkbox-wrapper .label a{
	color: var(--primary);
}
/* end */


/* contact */
.simple-icon-grid i{
	font-size: 22px;
}
/* end */



.modal .modal-body{
	padding: 2rem;
}
.modal .modal-content{
	border:0;
}
.modal .modal-body{
	position: relative;
}
.modal .modal-body .close{
	position: absolute;
	top: var(--size-sm);
	right: var(--size-sm);
	width: 30px;
	height: 30px;
	display: flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--gray-200);
	transition: color .3s;
}
.modal .modal-body .close:hover{
	color: var(--primary);
}
.modal .modal-body .close::after{
	content: "\f00d";
	font-family: "Font Awesome 6 free";
	font-weight: 700;
}

form .alert{
	border-radius: var(--radius-inside);
	display: none;
	margin-top: var(--size-sm);
	margin-bottom: 0;
}


.page-not-found .page-not-found-content.block {
    text-align: center;
    max-width: 500px;
    padding-top: 30px;
    padding-bottom: 30px;
    flex:1;
    display: flex;
    align-items: center;
}


/* text-cols */
.text-cols .longtext a{
	font-weight: 600;
}
/* end */


/* form-vehicle */
.form-vehicle .col-vehicle .item .btn-default{display: none;}
/* end */

.warranty-8{
	background-color: #e4f1ff;
	margin-bottom: var(--size-sm);
	border-radius: var(--radius-inside);
	overflow: hidden;
}
.warranty-8 .img{
	background-color: var(--dark);
	width: 60px;
	height: 60px;
	padding: var(--size-xs);
}
.warranty-8 .img svg{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.warranty-8 .desc{
	font-size: var(--f-size-sm);
	padding: var(--size-xs) var(--size-sm);
}
.warranty-8 .row{
	align-items: center;
}


/* single-image */
.single-image .media-wrapper{
	position: relative;
	padding-bottom: 56.25%;
}
.single-image .media-wrapper img{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* end */



/* banner */
.banner .banner-wrapper{
	position: relative;
}
.banner .media-wrapper{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.banner .media-wrapper img{
	width: 70%;
	left: 30%;
	height: 100%;
	object-fit: cover;
	position: relative;
}
.banner .media-wrapper::after{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(90deg, rgba(var(--dark-rgb), 1) 0%, rgba(var(--dark-rgb), 1) 30%, rgba(var(--dark-rgb), 0.5) 50%, rgba(var(--dark-rgb), 0) 60%, rgba(6, 13, 60, 0) 100%);
    z-index: 1;
}
.banner .content-wrapper{
	padding: var(--block-mb);
	position: relative;
	z-index: 2;
}
.banner .content-wrapper{
	color: #fff;
	max-width: 800px;
}
.banner .content-wrapper .longtext{
	font-size: var(--f-size-h6);
}

/* end */




.steps-controll .step{
	display: none;
}
.steps-controll .step.active{
	display: block;
}





/* announcements */
.announcements{
	position: fixed;
	left: var(--size-sm);
	bottom: var(--size-sm);
	z-index: 1300;
	width:360px;
	transition: all .15s;
	pointer-events: none;
}
.announcements.active{
	pointer-events: initial;
}
.announcement{
	width:100%;
	font-size: var(--f-size-sm);
	position: absolute;
	left: 0;
	right: 0;
	background-color: var(--primary);
	border-radius: var(--radius-inside);
	box-shadow:0 5px 10px 0px rgba(0,0,0,0.15);
	transition: bottom .3s, transform .2s, opacity .2s;
	transform: translateY(0px);
	pointer-events: none;
	opacity: 0;
}
.announcement.active{
	pointer-events: initial;
}
.announcement.visible{
	opacity: 1;
}
.announcement.closed{
	transform: translateY(20px);
}
.announcement .announcement-wrapper{
	padding: var(--size-sm) var(--size-md);
	display: block;
	color: #fff;
}
.announcement .announcement-wrapper .title{
	padding-right: var(--size-md);
}
.announcement .close{
	position: absolute;
	top:10px;
	right:10px;
	height:22px;
	width:22px;
	margin: auto 0;
	text-align:center;
	cursor:pointer;
	z-index: 10;
	opacity: 0.5;
	transition: all 0.3s;
}
.announcement .close i{
	line-height: 22px;
}
.announcement .close:hover{
	opacity: 1;
}
.announcement span{
	display:block;
	padding-right:20px;
	font-weight:600;
	margin-bottom:5px;
	font-size: var(--f-size-main);
}

@media (max-width: 575.98px){
	.announcements{width: 300px;}
	.announcement .announcement-wrapper{padding: var(--size-sm);}
	.announcement .col-image{display: none;}
}
@media (max-width: 450px){
	.announcements{width: 250px;}
}
/* end */





#cookiescript_badgetext{font-size: 10px;}

#window-xxl{display: block;}
#window-md{display: none;}
#window-sm{display: none;}
#window-xs{display: none;}




@media (min-width: 992px) and (max-width: 1399.98px){
	.sm-desktop-hidden{display: none;}
}

@media (max-width: 1800px) {
	#window-xxl{display: none;}
}

/* xl */
@media (max-width: 1399.98px){
	header > .block{justify-content: end;}

	header nav .items .item-wrapper{padding: 0 10px;}
}

/* lg */
@media (max-width: 1199.98px){
	header nav .items .item-wrapper{padding: 0 0.8rem;}
	header .logo{height: 30px;}

	.page-subheader a{padding: 0 var(--size-xs);}

	header > .block .right{display: none;}
}

@media (max-width: 1100px){

}

/* md */
@media (max-width: 991.98px){
	#window-md{display: block;}

	header nav{display: none;}
	#hamburger{display: flex;}
	header > .block .right{display: flex;}

	footer .col-main{margin-bottom: var(--size-lg);}

	.vehicle-panel{order:1;}
	.vehicle-page .sticky-panel{position: static;}
	.vehicle-content{order:2;}
	.vehicle-page .gallery{margin-bottom: var(--block-mb-sm);}
	/*.vehicle-page .help-panel{display: none;}*/
	.vehicle-page .border-panel.vehicle-main-panel{padding:0;border:0;box-shadow: 0 0 0 rgba(0,0,0,0);}

	.title-wrapper .media-wrapper img{left: 0;width: 100%;}
	.title-wrapper .media-wrapper::before{background: linear-gradient(90deg, rgba(var(--dark-rgb), 1) 0%, rgba(var(--dark-rgb), .5) 40%, rgba(var(--dark-rgb), 0) 100%);}

	.page-subheader .roll-out{display: flex;}
	.page-subheader .subheader-nav{
		display: none;
		position: fixed;
	    left: 0;
	    right: 0;
	    top: 140px;
	    background-color: #292e39;
	    padding: var(--size-md);
	    flex-direction: column;
	}
	.page-subheader .subheader-nav a{font-size: var(--f-size-h6);padding: var(--size-xs) 0;display: block;}

	.text-image .col-text{padding: calc(.75 * var(--size-xl)) calc(.5 * var(--size-xl));}
	.text-image .col-md-5{width: 50%;}
	.text-image .col-md-7{width: 50%;}

	.vehicle-page .sticky-panel .buttons{display: none;}
	.vehicle-page .md-buttons{display: block;}
}

/* sm */
@media (max-width: 767.98px){
	#window-sm{display: block;}

	.listing-categories-buttons{display: block;}

	.md-panel{
		position: fixed;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    top: 0;
	    width: 100%;
	    height: 100%;
	    max-width: 340px;
	    background-color: #fff;
	    padding: var(--size-md);
	    z-index: 1051;
	    transform: translateX(-100%);
	    transition: transform 400ms cubic-bezier(0.645, 0.045, 0.355, 1);
	    display: flex;
	    flex-direction: column;
	}
	.md-panel.active{transform: translateX(0);}
	.md-panel .md-panel-close{display: flex;}
	.md-panel .groups{overflow: auto;}

	.listing-categories-buttons{margin-bottom: var(--size-md);}

	.title-wrapper{padding-top: 0;padding-bottom: 0;display: flex;align-items: center;min-height: 250px;}
	.title-wrapper .media-wrapper::before{background: linear-gradient(90deg, rgba(var(--dark-rgb), .9) 0%, rgba(var(--dark-rgb), .5) 100%);}

	.carousel-img{--height:320px;}

	.cards .col-item.two .default-margins{padding:var(--size-md);}

	.text-image .col-md-5{width: 100%;}
	.text-image .col-md-7{width: 100%;}
	.text-image .col-img{order:1;}
	.text-image .col-text{order:2;padding: var(--size-lg);}

	.vehicle-color-variants .variant-colors .item{width: 45px;height: 45px;min-width: 45px;}
	.vehicle-color-variants .variant-colors .item.active{height: 55px;}
	.vehicle-color-variants .variant-colors .item:hover{height: 55px;}

	.title-wrapper.simple{min-height: 0;border-bottom: 1px solid var(--gray-100);margin-bottom: var(--block-mb);}
	.title-wrapper.simple .spacer{display: none;}

	.form-vehicle .col-vehicle{order:1;}
	.form-vehicle .col-form{order:2;}

	.article-content .text-image .col-img{width: 100%;}
	.article-content .text-image .col-img .media-wrapper{min-height: 250px;}
	.article-content .text-image .col-text{width: 100%;padding-left: var(--block-padding);padding-right: var(--block-padding);}

	.banner .content-wrapper{padding: var(--block-mb-sm);}
	.banner .media-wrapper::after{background: linear-gradient(90deg, rgba(var(--dark-rgb), 1) 0%, rgba(var(--dark-rgb), 1) 30%, rgba(var(--dark-rgb), 0.5) 70%, rgba(var(--dark-rgb), 0) 80%, rgba(var(--dark-rgb), 0) 100%);}
}

/* xs */
@media (max-width: 575.98px){
	#window-xs{display: block;}

	header{height: 60px;}
	header .logo{height: 28px;}
	.page-subheader{height:50px;top:60px;}
	.page-subheader .subheader-nav{top: 110px;}
	body{padding-top: 60px;}
	body.subheader-active{padding-top: 110px;}
	header > .block .right .btn-default{padding: 8px 14px;}


	footer .main{padding-top: var(--size-lg);padding-bottom: var(--size-lg);}
	footer .menu li{margin-bottom: var(--size-xs);}
	footer .bottom-menu{justify-content: left;margin-bottom: var(--size-sm);}
	footer .bottom-menu a{font-size: var(--f-size-xs);}
	footer hr{padding-top: var(--size-md);}
	footer .bottom{padding-bottom: var(--size-md);}
	footer .menu.info{display: flex;flex-wrap: wrap;margin-left: calc(-0.75rem);margin-right: calc(-0.75rem);}
	footer .menu.info li{padding-left: 0.75rem;padding-right: 0.75rem;width: 50%;}

	.vehicle-page .border-panel{padding: var(--size-sm);}
	.vehicle-page .vehicle-content .img-title{margin-bottom: var(--size-xs);}
	.vehicle-page .gallery .items .slick-list{width: calc(100% + var(--size-xs));margin-left: calc(-0.5* var(--size-xs));}
	.vehicle-page .gallery .item{margin: 0 calc(var(--size-xs) * 0.5);}
	.vehicle-page .vehicle-content .open-gallery{padding: 6px 10px;right: var(--size-xs);bottom: var(--size-xs);}
	.vehicle-page .vehicle-content .open-gallery i{margin-right: 6px;font-size: 20px;}
	.vehicle-page .vehicle-content .collections-wrapper{left: var(--size-xs);top: var(--size-xs);right: var(--size-xs);}

	.title-wrapper h1.semibold{margin-bottom: var(--size-xs);}

	.carousel-img{--height:280px;}
	.carousel-img .swiper.desc{bottom: calc(var(--size-lg));}

	.video-wrapper::before{width: 80px;height: 80px;}
	.video-wrapper::after{width: 65px;height: 65px;line-height: 65px;}

	.text-image .block{padding:0;}
	.text-image .col-img .media-wrapper{min-height: 250px;}
	.text-image .col-text{padding: var(--size-md) var(--block-padding);}

	.tablist .tab{padding: var(--size-sm) var(--size-xs);}

	.vehicle-color-variants .variant-colors .item{width: 40px;height: 40px;min-width: 40px;}
	.vehicle-color-variants .variant-colors .item.active{height: 50px;}
	.vehicle-color-variants .variant-colors .item:hover{height: 50px;}

	.section-title-carousel .block{min-height: 400px;}
	.section-title-carousel .img-wrapper::after{background: linear-gradient(90deg, rgba(var(--dark-rgb), 1) 0%, rgba(var(--dark-rgb), .5) 100%);}

	.main-gallery .wrapper{height: 150px;}

	.carousel-img .swiper.desc{height: 40px;}
	.carousel-img .swiper.desc .swiper-slide{height: 40px!important;}
	.carousel-img .swiper.desc .h5{font-size: var(--f-size-h6);}

	.vehicles-listing-page .title-wrapper{min-height: 0;}
	.vehicles-listing-page .title-wrapper .block{padding-top: var(--size-lg);padding-bottom: var(--size-lg);}

	.modal .modal-body{padding:var(--size-md);}
	.modal .title{padding-right: 30px;}
	.modal .submit-form{width: 100%;}

	.banner .media-wrapper::after{background: rgba(var(--dark-rgb), 0.85);}
	.banner .media-wrapper img{left: 0;width: 100%;}

	.vehicle-page .vehicle-content .collections-wrapper .badge{margin-right: 3px;margin-bottom: 3px;}
}

@media (max-width: 450px){
	/*header > .block .right{display: none;}*/
	header > .block .right .btn-default i{margin-right: 0;}
	header > .block .right .btn-default span{display: none;}
}

@media (max-width: 400px){
	.vehicle-color-variants .variant-colors .item{width: 35px;height: 35px;min-width: 35px;}
	.vehicle-color-variants .variant-colors .item.active{height: 40px;}
	.vehicle-color-variants .variant-colors .item:hover{height: 40px;}

}