body {
	background: #F7F7F7;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

body.main_header {
	background: #FFFFFF;
}

body, a {
	color: #1D1D1B;
}

h1, h2, h3, label, input {
	font-family: 'Open Sans', sans-serif;
}

h1 {
	margin: 0 0 20px;
	font-size: 36px;
	line-height: 1;
	font-weight: 700;
}

h2 {
	margin: 0 0 20px;
	font-size: 28px;
	line-height: 1;
	font-weight: 600;
}

h2.new_and_expected {
	margin: 20px 0 0;
	color: #000;
}

h3 {
	margin: 0 0 20px;
	font-size: 20px;
	line-height: 1;
	font-weight: 600;
}

table {}

td+td {
	padding-left: 20px;
}

tr+tr td {
	padding-top: 20px;
}

tr.even td, tr.even th {
	background-color: #FFFFFF;
}

input[type=text], input[type=email], input[type=search],
select,
textarea {
	width: 300px;
	/*height:45px;
	padding:0 15px;*/
	border: solid 1px #989897;
	border-radius: 4px;
	box-sizing: border-box;
	background: transparent;
}

input[type=text]:focus, input[type=email]:focus, input[type=search]:focus,
textarea:focus {
	outline: solid 1px #F9B625;
	outline-offset: -1px;
}

button, .button {
	display: inline-block;
	font-weight: 600;
	/* height: 45px; */
	line-height: 43px;
	padding: 0 30px;
	border: solid 1px #FFB81C;
	border-radius: 4px;
	box-sizing: border-box;
	background: #FFB81C;
	color: #FFF;
	text-align: center;
	text-decoration: none;
}

button:hover, .button:hover {
	background: #F2AE1B;
	border-color: #F2AE1B;
}

button.transparent, .button.transparent {
	background-color: inherit;
	border: none;
	color: #000000;
}

button.blue, .button.blue {
	background-color: #03A9F4;
	border-color: #03A9F4;
}

button.green, .button.green {
	background: #9ECF5B;
	border-color: #9ECF5B;
}

button.green:hover, .button.green:hover {
	background: #95C255;
	border-color: #95C255;
}

button.black, .button.black {
	background-color: #333333;
	border-color: #333333;
}

button.gray, .button.gray {
	background-color: #999999;
	border-color: #999999;
}

button.black:hover, .button.black:hover {
	background-color: #565656;
}

button.white, .button.white {
	background: #FFFFFF;
	border-color: #FFFFFF;
	color: #000000;
}

button.white:hover, .button.white:hover {
	background: #03A9F4;
	border-color: #03A9F4;
	color: #FFFFFF;
}

button.simple, .button.simple {
	background: transparent;
	color: #F9B626;
}

button.white.simple, .button.white.simple {
	color: #FFFFFF;
}

button.simple:hover, .button.simple:hover {
	color: #BF290C;
	background-color: rgb(244, 244, 244);
}

b {
	font-weight: 700;
}

img {
	max-width: 100%;
}

img.left {
	float: left;
	margin: 0 20px 20px 0;
	max-width: 50%;
}

ul {
	display: table;
	margin: 0;
	position: relative;
	list-style: disc outside none;
}

ol {
	display: table;
	position: relative;
	margin: 0;
	list-style: decimal outside none;
}

small {
	font-size: 57%;
}

.svg {
	display: inline-block;
	width: 20px;
	height: 20px;
}

.clear {
	clear: both;
}

.boolean {
	position: relative;
	width: 20px;
	height: 20px;
}

.boolean[value=true]::before {
	content: "";
	position: absolute;
	top: 0;
	left: 5px;
	height: 14px;
	width: 7px;
	border-right: solid 3px #9ECF5B;
	border-bottom: solid 3px #9ECF5B;
	transform: rotate(45deg);
}

.boolean[value=false]::before, .boolean[value=false]::after {
	content: "";
	position: absolute;
	top: 9px;
	left: 0;
	width: 20px;
	height: 3px;
	background: #F9B626;
	transform: rotate(45deg);
}

.boolean[value=false]::after {
	transform: rotate(135deg);
}

.orange {
	color: #F9B625;
}

.dropdown {
	display: flex;
	flex-direction: column;
	position: relative;
	transition: .25s;
	z-index: 3;
}

/*
	.dropdown:before{
		content:"";
		position:absolute;
		top:0;
		left:0;
		width:100%;
		height:40px;
		z-index:2;
	}
	.dropdown:hover:before{
		display:none;
	}
*/
.dropdown a {
	position: relative;
	display: block;
	height: 0px;
	padding: 0 30px 0 10px;
	font-size: 16px;
	line-height: 40px;
	text-decoration: none;
	overflow: hidden;
	transition: all .25s;
	order: 2;
}

.dropdown a.current {
	order: 1;
	pointer-events: none;
}

.dropdown a.current.clickable {
	pointer-events: auto;
}

.dropdown a.current:after {
	content: "";
	position: absolute;
	margin-top: -9px;
	top: 50%;
	right: 10px;
	width: 9px;
	height: 9px;
	border-right: solid 2px #ADADAC;
	border-bottom: solid 2px #ADADAC;
	transform: rotate(45deg);
}

.dropdown a.current,
.dropdown:hover a {
	height: 40px;
}

.dropdown a:hover {
	color: #565656;
}

.dropdown-language a {
	padding-left: 65px;
}

.dropdown-language a img {
	position: absolute;
	top: 50%;
	left: 25px;
	margin-top: -9px;
	width: 30px;
}

.dropdown-sort-container {
	float: left;
	display: block;
	position: relative;
	height: 40px;
	margin: 20px;
}

.dropdown-sort {
	background-color: #FFFFFF;
	border-radius: 4px;
	border: 1px solid #E6E6E6;
}

.dropdown-sort:before {
	display: none;
}

.header-login a {
	color: #FFFFFF;
	/*padding:0 60px 0 25px;*/
}

.result-count {
	display: inline-block;
	margin: 0 0 10px 0;
	color: #F9B625;
	font-weight: 600;
	font-size: 15px;
}

.google-maps {
	height: 300px;
}

.grid, .grid-row {
	position: relative;
	display: -webkit-flex;
	-webkit-flex-flow: row wrap;
	display: -ms-flexbox;
	-ms-flex-flow: row wrap;
	-ms-align-content: flex-start;
	-webkit-align-content: flex-start;
	align-content: flex-start;
	width: 100%;
	z-index: 1;
}

.grid+.grid {
	margin-top: 20px;
}

.grid-gutter {
	/* margin:-40px 0 0; */
	margin: 0;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
}

.grid-gutter>* {
	padding: 40px 20px 0;
	box-sizing: border-box;
}

.grid-small-gutter>* {
	padding: 0 10px;
}

.grid-gutter .grid-gutter {
	width: calc(100% + 30px);
}

.grid>a[name] {
	position: absolute;
	top: -110px;
}

div.box {
	border-radius: 4px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 25px;
	line-height: 30px;
	padding-top: 15px;
}

div.info_box {
	padding: 15px 25px;
}

span.help-block {
	display: block;
}

div.notice {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 88px;
	z-index: 9;
	background-color: #F7F7F7;
}

div.notice a {
	display: block;
	margin: 10px auto 0;
	padding: 10px 20px;
	width: 100%;
	max-width: 600px;
	background-color: #FFFFFF;
	text-decoration: none;
}

body.show-notice div.notice {
	display: block;
}

div.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 72px;
	text-align: right;
	z-index: 9;
	background-color: #1D1D1B;
	border-bottom: 2px solid #E6E6E6;
}

body.show-notice div.header {
	top: 88px;
}

body.main_header div.header {
	/* position:absolute;
	height:72px; */
	border-bottom: 2px solid transparent;
	transition: .25s;
}

body.main_header.scroll div.header {}

div.header .header-logo,
div.header .header-icon-only,
div.header .header-small-logo {
	position: absolute;
	top: 55px;
	left: 50%;
	z-index: 11;
	height: 78px;
	width: 100px;
	margin-left: -50px;
}

div.header .header-logo {
	display: none;
	width: 170px;
	top: 14px;
	fill: #FFF;
	margin-left: -110px;
}

div.header .header-icon-only {
	display: none;
	top: 14px;
	left: 20px;
}
body.main_header div.header .header-icon-only {
	display: block;
}

div.header .header-logo svg {
	max-width: 250px;
}

div.header .header-small-logo svg,
div.header .header-icon-only svg {
	max-width: 150px;
	-webkit-filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.1));
	filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.1));
}
div.header .header-icon-only svg {
	max-width: 56px;
}

body.main_header div.header .header-logo {
	position: absolute;
	left: 155px;
	display: none;
	transition: .25s;
}

body.main_header.scroll div.header .header-logo {
	max-width: 170px;
}

body.main_header.scroll div.header .header-logo svg {
	max-width: 170px;
	max-height: 43px;
}

body.main_header div.header .header-small-logo {
	display: none;
}

div.header span.mobile-background {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #1D1D1B;
	z-index: 10;
}

.mobile-menu {
	display: none;
	position: absolute;
	top: 17.5px;
	left: 22px;
	height: 19px;
	width: 30px;
	z-index: 11;
	transition: all .5s;
	cursor: pointer;
}

.mobile-menu:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top: solid 3px #FFF;
	border-bottom: solid 3px #FFF;
	box-sizing: border-box;
	transition: all .5s;
}

.mobile-menu:after {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 100%;
	border-top: solid 3px #FFF;
	transition: all .5s;
}

.main_header .mobile-menu:before, .main_header .mobile-menu:after {
	border-color: #FFF;
}

.main_header.scroll .mobile-menu:before, .main_header.scroll .mobile-menu:after {
	border-color: #FFF;
}

.show-mobile .mobile-menu {
	transform: rotate(180deg);
}

.show-mobile .mobile-menu:before {
	top: 8px;
	height: 0;
	transform: rotate(45deg);
	border-width: 1.5px;
	border-color: #FFF;
}

.show-mobile .mobile-menu:after {
	transform: rotate(135deg);
	border-color: #FFF;
}

.header-right {
	float: left;
	transition: all .5s;
	width: 100%;
	z-index: 9;
}

.header-menu {
	float: left;
	padding: 0 20px;
}

.header-menu>div {
	display: inline-block;
	position: relative;
}

body.main_header .header-menu {
	float: none;
	text-align: left;
	padding-left: 80px;
}

.header-menu>div>.header-submenu {
	display: none;
	position: absolute;
	left: 0;
	z-index: 5;
	background-color: #1D1D1B;
}

body.main_header .header-menu>div>.header-submenu {
	background-color: #1D1D1B;
}

body.main_header .header-menu>div>.header-submenu {
	top: 72px;
}

.header-menu>div:hover>.header-submenu {
	display: block;
}

.header-menu>div>.header-submenu>a {
	line-height: 50px;
}

.header-menu a {
	display: block;
	color: #B3B3B3;
	padding: 0 10px;
	text-decoration: none;
	font-weight: 600;
	line-height: 72px;
	transition: all .5s;
	white-space: nowrap;
}

.header-menu a:hover {
	color: #FFFFFF;
}

.header-menu a.active {
	color: #FFFFFF;
}

body.main_header .header-menu a {
	color: rgba(255, 255, 255, 0.75);
	transition: .25s;
}

body.main_header .header-menu a:hover,
body.main_header.scroll .header-menu .header-submenu a:hover {
	color: #FFFFFF;
}

body.main_header.scroll .header-menu a,
body.main_header.scroll .header-menu .header-submenu a {
	color: #B3B3B3;
}

body.main_header.scroll .header-menu a:hover {
	color: #FFFFFF;
}

.header-menu-button {
	float: right;
	position: relative;
	padding-right: 38px;
	color: #000;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 600;
	line-height: 17px;
	z-index: 2;
}

.header-menu-button::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 21px;
	height: 15px;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
	transition: all .25s;
}

.header-menu-button::after {
	content: "";
	position: absolute;
	top: 8px;
	right: 0;
	width: 21px;
	height: 0;
	border-bottom: solid 1px #000;
	transition: all .25s;
}

.header-black .header-menu-button::after {
	border-color: #FFF;
}

.menu .header-menu-button::after {
	top: 7px;
	transform: rotate(135deg);
	border-bottom-width: 2px;
	border-color: #000;
}

.header-mobile-icons {
	position: absolute;
	top: 0;
	right: 0;
}

.header-dropdown,
.header-login {
	float: left;
}

.header-login a.current:after,
.header-dropdown a.current:after {
	display: none;
}

.header-dropdown:after,
.header-login:after {
	border-color: #B3B3B3;
}

a.mobile-account {
	display: none;
	float: left;
	padding: 16px;
}

.header-dropdown a,
.header-login a {
	position: relative;
	top: -16px;
	color: #F9B625;
	padding-right: 15px;
	text-align: left;
}

.header-login a {
	width: auto;
}

.header-dropdown a span,
.header-login a span {
	color: #B3B3B3;
	margin-left: 15px;
}

.header-dropdown a:hover span,
.header-login a:hover span {
	color: #565656;
}

a.mobile-account svg,
.header-login a svg {
	float: left;
	margin-top: 10px;
	height: 16px;
	width: 16px;
	fill: #F9B625;
}

.header-dropdown:hover,
.header-login:hover {
	background: #FFFFFF;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, .25);
}

.header-dropdown a.current,
.header-login a.current {
	top: 0;
	padding-top: 16px;
	padding-bottom: 16px;
}

a.mobile-account,
.header-login a.current,
.header-login a.current img {
	height: 40px;
}

.header-login a.current span {
	height: 40px;
}

.header-login a {
	padding-right: 15px;
}

.header-login a span.count {
	position: absolute;
	top: 8px;
	right: 15px;
	width: 24px;
	color: #FFFFFF;
	background-color: #F9B626;
	line-height: 24px;
	border-radius: 12px;
	text-align: center;
	font-size: 12px;
}

.header-login a span.count:before {}

.header-dropdown a:hover,
.header-login a:hover {}

.msg_background {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 17000001;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.msg_error,
.msg_notice {
	/* position:absolute;
	top:110px;
	left:50%;
	width:400px; */
	/* margin-left:-200px; */
	/* padding:15px 30px; */
	z-index: 10;
	background-color: rgba(244, 244, 244, 0.9);
	background-color: #CD0025;
	color: #FFF;
	/* border:1px solid #F9B626; */
	/* border-radius:4px; */
}

.container .msg_error .center,
.container .msg_notice .center {
	padding-top: 20px;
	padding-bottom: 20px;
}

.msg_notice {
	background-color: #9ECF5B;
}

.cookies {
	color: #000;
	background-color: #FFF;
}

.msg_error span.close,
.msg_notice span.close,
.tempWebsite .close {
	position: absolute;
	top: 5px;
	right: 5px;
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('/images/remove.svg');
	cursor: pointer;
}
.msg_notice .title{
	position: relative;
	font-size:1.5em;
	font-weight:bold;
	display: block;
	padding-left: 48px;
	padding-bottom: 15px;
}
	.msg_notice .title img{
		position: absolute;
		top: 0;
		left: 0;
	}
	.msg_notice .buttons{
		margin-top: 15px;
		display:block;
	}
	.msg_notice .buttons a{
		margin-bottom: 10px;
	}

.anchor-spacer {
	display: block;
	position: relative;
	top: -82px;
	visibility: hidden;
}

body.show-notice .anchor-spacer {
	top: -98px;
}

.specific_cookies {
	display: none;
}
.specific_cookies label {
	display: block;
	font-weight: bold;
	padding: 15px;
	cursor: pointer;
}
.specific_cookies label input[type="checkbox"] {
	padding: 5px 15px 5px 5px;
	background-color: red;
	margin-right: 15px;
}
.specific_cookies span.small {
	display: inline-block;
	font-weight: normal;
}

.tempWebsite {
	position: absolute;
	top: 125px;
	left: 10%;
	width: calc(80% - 100px);
	padding: 50px;
	background-color: rgba(255, 255, 255, 0.95);
	font-size: 110%;
	color: #000000;
	z-index: 1;
	border: 1px solid #E6E6E6;
	border-radius: 4px;
}

.tempWebsite a {
	color: #000;
	text-decoration: none;
}

a#call,
a#contact {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 48px;
	height: 48px;
	z-index: 6;
	background-color: #999999;
	box-sizing: border-box;
	padding: 10px;
	border-radius: 24px;
}

a#contact {
	right: 83px;
}

a#call svg,
a#contact svg {
	fill: #FFF;
	width: 28px;
}

.panorama_viewer {
	width: 90vw;
	height: 90vh;
}

.fancybox-content {
	padding: 0;
	height: 90%;
	width: 90%;
	overflow: hidden;
}

.container {
	padding: 74px 0 0;
}

body.show-notice .container {
	padding-top: 160px;
}

body.main_header .container {
	padding: 62px 0 10px;
}

body.show-notice.main_header .container {
	padding-top: 88px;
}

.slider {
	position: relative;
	color: #FFF;
	min-height: 500px;
}

.slider a {
	color: #FFF;
}

.slider-slides {
	position: relative;
	width: 100%;
	overflow: hidden;
	z-index: 1;
}

.slider-slides::before {
	content: "";
	display: block;
	margin-top: 31.25%;
}
@media screen and (min-width: 48em) {
	.vehicle_slider .slider-slides::before {
		content: "";
		display: block;
		margin-top: 66%;
	}
}
@media screen and (min-width: 64em) {
	.vehicle_slider .slider-slides::before {
		content: "";
		display: block;
		margin-top: 50%;
	}
}
@media screen and (min-width: 80em) {
	.vehicle_slider .slider-slides::before {
		content: "";
		display: block;
		margin-top: 33%;
	}
}

.slide {
	position: absolute;
	top: 0;
	left: 100%;
	/* width: 100%; */
	/* height: 100%; */
	padding:2px 20px;
	box-sizing: border-box;
	z-index: 1;
	transition: all 1.5s;
}
.vehicle_slider .slide.pure-u-1 {
	left: 100%;
	/* width: 100%; */
}
.vehicle_slider .slider-slides>div.pure-u-1.current.last,
.vehicle_slider .slide.pure-u-1:nth-child(1) {
	left: -100%;
	z-index: 2;
}
.vehicle_slider .slider-slides>div.pure-u-1.current,
.vehicle_slider .slide.pure-u-1:nth-child(2) {
	left: 0%;
	z-index: 3;
}

.vehicle_slider .slide.pure-u-1-2,
.vehicle_slider .slide.pure-u-md-1-2 {
	left: 100%;
	/* width: 50%; */
}
.vehicle_slider .slider-slides>div.pure-u-1-2.current.last,
.vehicle_slider .slide.pure-u-1-2:nth-child(1) {
	left: -50%;
	z-index: 2;
}
.vehicle_slider .slider-slides>div.pure-u-1-2.current,
.vehicle_slider .slide.pure-u-1-2:nth-child(2) {
	left: 0%;
	z-index: 3;
}
.vehicle_slider .slide.pure-u-1-2:nth-child(3) {
	left: 50%;
}

@media screen and (min-width: 48em) {
	.vehicle_slider .slider-slides>div.pure-u-md-1-2.current.last,
	.vehicle_slider .slide.pure-u-md-1-2:nth-child(1) {
		left: -50%;
		z-index: 2;
	}
	.vehicle_slider .slider-slides>div.pure-u-md-1-2.current,
	.vehicle_slider .slide.pure-u-md-1-2:nth-child(2) {
		left: 0%;
		z-index: 3;
	}
	.vehicle_slider .slide.pure-u-md-1-2:nth-child(3) {
		left: 50%;
	}
}

.vehicle_slider .slide.pure-u-1-3 {
	left: 100%;
	/* width: 33%; */
}
.vehicle_slider .slider-slides>div.pure-u-1-3.current.last,
.vehicle_slider .slide.pure-u-1-3:nth-child(1) {
	left: -33%;
	z-index: 2;
}
.vehicle_slider .slider-slides>div.pure-u-1-3.current,
.vehicle_slider .slide.pure-u-1-3:nth-child(2) {
	left: 0;
	z-index: 3;
}
.vehicle_slider .slide.pure-u-1-3:nth-child(3) {
	left: 33%;
}
.vehicle_slider .slide.pure-u-1-3:nth-child(4) {
	left: 66%;
}

@media screen and (min-width: 64em) {

	.vehicle_slider .slide.pure-u-lg-1-3 {
		left: 100%;
		/* width: 33%; */
	}
	.vehicle_slider .slider-slides>div.pure-u-lg-1-3.current.last,
	.vehicle_slider .slide.pure-u-lg-1-3:nth-child(1) {
		left: -33%;
		z-index: 2;
	}
	.vehicle_slider .slider-slides>div.pure-u-lg-1-3.current,
	.vehicle_slider .slide.pure-u-lg-1-3:nth-child(2) {
		left: 0;
		z-index: 3;
	}
	.vehicle_slider .slide.pure-u-lg-1-3:nth-child(3) {
		left: 33%;
	}
	.vehicle_slider .slide.pure-u-lg-1-3:nth-child(4) {
		left: 66%;
	}
}

.vehicle_slider .slide.pure-u-1-4 {
	left: 100%;
	/* width: 25%; */
}

.vehicle_slider .slider-slides>div.pure-u-1-4.current.last,
.vehicle_slider .slide.pure-u-1-4:nth-child(1) {
	left: -25%;
	z-index: 2;
}
.vehicle_slider .slider-slides>div.pure-u-1-4.current,
.vehicle_slider .slide.pure-u-1-4:nth-child(2) {
	left: 0%;
	z-index: 3;
}
.vehicle_slider .slide.pure-u-1-4:nth-child(3) {
	left: 25%;
}
.vehicle_slider .slide.pure-u-1-4:nth-child(4) {
	left: 50%;
}
.vehicle_slider .slide.pure-u-1-4:nth-child(5) {
	left: 75%;
}

@media screen and (min-width: 80em) {
	.vehicle_slider .slide.pure-u-xl-1-4 {
		left: 100%;
		/* width: 25%; */
	}

	.vehicle_slider .slider-slides>div.pure-u-xl-1-4.current.last,
	.vehicle_slider .slide.pure-u-xl-1-4:nth-child(1) {
		left: -25%;
		z-index: 2;
	}
	.vehicle_slider .slider-slides>div.pure-u-xl-1-4.current,
	.vehicle_slider .slide.pure-u-xl-1-4:nth-child(2) {
		left: 0%;
		z-index: 3;
	}
	.vehicle_slider .slide.pure-u-xl-1-4:nth-child(3) {
		left: 25%;
	}
	.vehicle_slider .slide.pure-u-xl-1-4:nth-child(4) {
		left: 50%;
	}
	.vehicle_slider .slide.pure-u-xl-1-4:nth-child(5) {
		left: 75%;
	}
}

.slider.vehicle_slider .slider-slides .slide img {
	margin-left: 0;
}
@media (max-width: 47.9em) {
	.slider.vehicle_slider .slider-slides::before {
		margin-top: 98cqw;
	}
}
@media (min-width: 64em) {
	.pure-u-lg-3-4  > .slider.vehicle_slider .slider-slides::before {
		margin-top: 62%;
	}
}

.slider-slides>div.current {
	left: 0;
	z-index: 3;
}

.slider-slides>div.current.last {
	left: -100%;
	z-index: 2;
}

.slide img {
	display: block;
}

.slide-text {
	position: absolute;
	top: 90px;
	left: 160px;
	font-size: 150%;
	text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

body.main_header .slide-text {
	top: 120px;
}

.slide-text.top_right {
	left: auto;
	right: 160px;
}

.slide-text.bottom_left {
	top: auto;
	bottom: 90px;
}

.slide-text.bottom_right {
	left: auto;
	right: 160px;
	top: auto;
	bottom: 90px;
}

body.main_header .slide-text.bottom_left,
body.main_header .slide-text.bottom_right {
	bottom: 50px;
}

.slide-text h1 {
	font-size: 200%;
	margin-bottom: 10px;
}

.slider-nav {
	position: absolute;
	left: 50%;
	bottom: 80px;
	transform: translateX(-50%);
	z-index: 2;
}

.slider-nav a {
	float: left;
	width: 8px;
	height: 8px;
	border: solid 2px #FFF;
	border-radius: 50%;
	opacity: .5;
}

.slider-nav a+a {
	margin-left: 6px;
}

.slider-nav a.current {
	background: #FFF;
	opacity: 1;
}

.cms-slider-manage {
	position: absolute;
	top: 95px;
	left: 0;
	padding: 5px;
	background: #03A9F4;
	color: #FFF;
	text-decoration: none;
	z-index: 2;
}

.slider-bar {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 20px 0;
	background: rgba(0, 0, 0, .8);
	text-align: center;
	z-index: 2;
}

.slider-bar>* {
	display: inline-block;
	line-height: 20px;
}

.slider-bar>*+* {
	margin-left: 125px;
}

.slider-bar a {
	text-decoration: none;
}

.slider-bar a:hover {
	text-decoration: underline;
}

.slider-bar svg {
	float: left;
	margin-right: 15px;
	width: 20px;
	height: 20px;
	fill: #F9B625;
}

.slider .video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.slider .video video {
	width: 100%;
	height: 100%;
}

.slider .video:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 144px;
	width: 100%;
	z-index: 1;
	background: linear-gradient(to bottom, rgba(29, 29, 27, 0.5), rgba(29, 29, 27, 0));
}



.slider .video .button {
	height: 44px;
	text-decoration: none;
	padding: 0 20px;
	border-radius: 27px;
	border: 1px solid #FFFFFF;
	background: rgba(0, 0, 0, .25);
	line-height: 44px;
}

.slider .video .button svg {
	display: inline-block;
	position: relative;
	top: -2px;
	margin-right: 7px;
	width: 16px;
	vertical-align: middle;
	fill: #FFF;
}

.slider .video .play {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 31.25vw;
	background: url('/images/video_still.jpg?2') no-repeat center;
	background-size: cover;
	z-index: 1;
	fill: #FFF;
}

.slider .video .play span {
	position: absolute;
	top: 335px;
	/* bottom:10px; */
	right: 10px;
	/* padding-left:40px; */
	height: 30px;
	line-height: 28px;
}

.slider .video .play svg {
	position: absolute;
	left: 0;
	left: 0;
	width: 30px;
	height: 30px
}

.slider .video .stop {
	position: fixed;
	right: 50px;
	bottom: 35px;
	opacity: 1;
	z-index: 11;
	transition: .25s;
}

.slider .video .show .stop {
	bottom: -60px;
	opacity: 0;
}

.slider .video .replay {
	position: fixed;
	right: 50px;
	bottom: -60px;
	opacity: 0;
	z-index: 7;
	transition: .25s;
}

.slider .video .show .replay {
	bottom: 35px;
	opacity: 1;
	transition: .25s;
	transition-delay: 1.5s;
}

.sitemanager-slide {
	width: 1920px;
	zoom: .5;
}

.sitemanager-slide img {
	width: 100%;
}

.sitemanager-slide-text {
	position: absolute;
	top: 90px;
	left: 160px;
	font-size: 150%;
	text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
	line-height: 1;
}

.center {
	padding: 0px 20px;
}

.center.large {
	padding: 0px 10px;
}

.center.small {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0;
}

body.main_header .center.small {
	position: relative;
	margin-top: 0;
	z-index: 5;
	border-radius: 4px 0 0 4px;
	box-shadow: 0 6px 18px 0 rgba(0, 0, 0, 0.1);
}

.container .center {
	padding-top: 40px;
	padding-bottom: 40px;
}

.container .center.newly_expected {
	padding-bottom: 10px;
}

.container .center.popular {
	padding-top: 10px;
}

.center>h1,
.center>h2 {
	padding-top: 30px;
	margin-bottom: 15px;
}

.center>span.subtitle {
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 0;
	font-weight: 500;
	font-size: 20px;
	line-height: 23px;
	color: #B3B3B3;
}

.need-help {
	padding: 67px 140px 0;
}

.need-help .pure-g {
	align-content: stretch;
}

.need-help .need-help-title {
	margin: 0 0 20px;
	padding-top: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 36px;
	line-height: 1;
	font-weight: 700;
	color: #333333;
}

.need-help-text {
	padding-bottom: 67px;
}

.need-help-employee {
	height: 100%;
	min-height: 250px;
	background: center bottom no-repeat;
	background-size: contain;
}

/* .left-column,
	.right-column{
		float:left;
		overflow:hidden;
	}
	.left-column{
		width:260px;
		padding:40px;
	}
	.right-column{
		width:calc(100% - 382px);
		padding:20px;
		border:2px solid #E6E6E6;
		border-right:0;
	} */
.stock {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-content: stretch;
	align-items: flex-start;
}

.stock.sold {
	display: block;
	align-items: stretch;
}

.stock-left {
	min-width: 260px;
	width: 260px;
	padding: 40px;
}

.stock-right {
	padding: 20px;
	width: 100%;
	border-left: solid 2px #E6E6E6;
}

.anchor-menu {
	position: fixed;
	top: 150px;
	left: 60px;
	max-width: 200px;
}

.anchor-menu b {
	display: block;
}

.anchor-menu a {
	float: left;
	clear: both;
}

.anchor-menu+.center {
	padding-left: 260px;
}

.gray-bg {
	background: #F7F7F7;
}

.white-bg {
	background: #FFF;
}

.black-bg {
	background: #1D1D1B;
	color: #FFFFFF;
}

.vehicle-details {
	position: relative;
}

.yellow-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 320px;
	background: linear-gradient(313.16deg, #FFCC00 0%, #FF9D00 100%);
}

.center.payoff {
	font-size: 2em;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

.center.payoff h1 {
	margin:0;
	padding:10px 0;
	font-size: inherit;
	font-weight:normal;
}

.center.payoff b {
	font-weight: normal;
	color: #FFB81C;
}

.search {
	position: relative;
	text-align: center;
	/* margin-top:10px;
		margin-bottom:50px; */
}

.search .header-logo {
	display: inline-block;
	position: relative;
	width: 180px;
	margin-right: 50px;
}

.search .header-logo img {
	max-width: 100%;
}

.search form {
	display: inline-block;
	overflow: hidden;
}

.search form>* {
	float: left;
}

.search b {
	margin-right: 30px;
	font-size: 100%;
	line-height: 45px;
}

.search input {
	width: 410px;
	height: 45px;
	padding: 0 15px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border: 1px solid #E9EAEB;
	border-right: 0;
}

.search button {
	position: relative;
	width: 58px;
	padding: 0;
	background: transparent;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-color: #E9EAEB;
}

.search button svg {
	position: absolute;
	top: 12px;
	left: 16px;
	width: 20px;
	fill: #1D1D1B;
}

#toggleCategories {
	position: relative;
	display: none;
	line-height: 45px;
	color: #F9B625;
	text-decoration: none;
	text-align: center;
}

#toggleCategories.down:after,
#toggleCategories.up:after {
	content: "";
	position: absolute;
	top: 35px;
	left: 50%;
	margin-left: -4.5px;
	width: 9px;
	height: 9px;
	border-right: solid 2px #F9B625;
	border-bottom: solid 2px #F9B625;
	transform: rotate(45deg);
}

#toggleCategories.up:after {
	top: 40px;
	transform: rotate(-135deg);
}

.search .allVehicles {
	line-height: 45px;
	margin-left: 40px;
	color: #F9B625;
	text-decoration: none;
}

.search-categories {
	text-align: center;
	overflow: hidden;
	height: auto;
	margin: 0 auto 10px;
}

/*
				.search-categories.hide{
					position:relative;
					height:75px;
				}
					.search-categories.hide:after{
			            content:'';
			            position:absolute;
			            bottom:0;
						left:0;
			            width:100%;
			            height:25px;
			            background:-webkit-linear-gradient(
		                    rgba(255, 255, 255, 0) 0%,
		                    rgba(255, 255, 255, 1) 100%
			            );
			            background-image:-moz-linear-gradient(
		                    rgba(255, 255, 255, 0) 0%,
		                    rgba(255, 255, 255, 1) 100%
			            );
			            background-image:-o-linear-gradient(
		                    rgba(255, 255, 255, 0) 0%,
		                    rgba(255, 255, 255, 1) 100%
			            );
			            background-image:linear-gradient(
		                    rgba(255, 255, 255, 0) 0%,
		                    rgba(255, 255, 255, 1) 100%
			            );
			            background-image:-ms-linear-gradient(
		                    rgba(255, 255, 255, 0) 0%,
		                    rgba(255, 255, 255, 1) 100%
			            );
					}
*/
.search-categories a {
	display: inline-block;
	position: relative;
	margin: 12px .5% 0;
	padding-left: 70px;
	height: 62px;
	text-align: left;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: bold;
	overflow: hidden;
}

.search-categories-count {
	display: block;
	line-height: 22px;
	font-size: 75%;
	font-weight: normal;
	z-index: 2;
}

.search-categories a svg {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 100%;
	max-height: 57px;
	max-width: 57px;
	fill: #F9B625;
}

.search-categories a:hover svg {
	fill: #1A1A18;
}

.container .submenu {
	padding-top: 15px;
	padding-bottom: 0;
	border: solid 1px #D6D6D6;
}

.container .submenu a {
	display: inline-block;
	padding: 10px 20px;
	margin-left: 40px;
	text-decoration: none;
	color: rgba(50, 50, 48, 0.5);
	border-bottom: 3px solid #FFFFFF;
}

.container .submenu a:hover {
	color: rgba(50, 50, 48, 0.75);
	border-bottom-color: rgba(50, 50, 48, 0.5);
}

.container .submenu a.first {
	margin-left: 0;
}

.container .submenu a.current {
	color: rgba(50, 50, 48, 1);
	border-bottom-color: #F9B625;
}

.breadcrumble,
.share {
	color: #FFF;
}

.breadcrumble {
	color: #FFF;
}

.breadcrumble a {
	color: #FFF;
	padding-left: 25px;
}

.breadcrumble a {
	text-decoration: none;
}

.share a.whatsapp,
.share a.facebook,
.share a.linkedin,
.share a.twitter,
.share a.pdf,
.share a.call,
.share a.contact {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	height: 40px;
	width: 25px;
	line-height: 40px;
	margin: 0 0 20px;
	opacity: .7;
	vertical-align: middle;
}

.share a.whatsapp {
	display: none;
}

.share a.whatsapp svg,
.share a.facebook svg,
.share a.linkedin svg,
.share a.twitter svg,
.share a.pdf svg,
.share a.call svg,
.share a.contact svg {
	position: absolute;
	top: 7px;
	left: 0;
	height: 25px;
	width: 25px;
	fill: #FFF;
}

.share a.whatsapp:hover,
.share a.facebook:hover,
.share a.linkedin:hover,
.share a.twitter:hover,
.share a.pdf:hover,
.share a.call:hover,
.share a.contact:hover {
	fill: #075e54;
	opacity: 1;
}

.share a.facebook:hover {
	fill: #3b5998;
}

.share a.linkedin:hover {
	fill: #007bb5;
}

.share a.twitter:hover {
	fill: #00aced;
}

.share span {
	display: inline-block;
	height: 25px;
	margin: 0 10px;
}

.share a.favorite,
.share a.compare,
.sort a.pdf {
	position: relative;
	display: inline-block;
	margin: 0 0 20px;
	text-decoration: none;
	background-image: none;
	background-repeat: no-repeat;
	padding-left: 20px;
	height: 40px;
	line-height: 40px;
	color: #FFFFFF;
	opacity: .7;
	vertical-align: middle;
}

.sort a.pdf {
	float: right;
}

.sort a.pdf svg,
.share a.favorite svg {
	position: absolute;
	top: 7px;
	left: 0;
	width: 25px;
	height: 25px;
	fill: #FFF;
}

.sort a.pdf:hover,
/* .share a.favorite.remove svg, */
.share a.favorite:hover {
	/* fill:#333333; */
	opacity: 1;
}

/* .share a.favorite.remove:hover svg{
						fill:#333333;
					} */
.share a.compare {
	background-image: none;
}

.share a.compare svg {
	position: absolute;
	top: 5px;
	left: 0;
	width: 30px;
	height: 30px;
	fill: #FFF;
}

.share a.compare:hover svg {
	fill: #333333;
}

.compare-overlay {
	position: fixed;
	bottom: 0;
	left: 50%;
	height: 210px;
	width: 652px;
	padding: 40px 40px 0 40px;
	margin-left: -326px;
	background-color: rgba(29, 29, 27, 0.9);
	border: 1px solid #F4F4F4;
	border-bottom: 0;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
	z-index: 10;
	-webkit-transition: bottom 0.5s;
	transition: bottom 0.5s;
}

.compare-overlay.down {
	bottom: -210px;
}

.compare-overlay .toggle {
	position: absolute;
	top: 0;
	left: 0;
	height: 40px;
	width: 100%;
	cursor: pointer;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	text-align: center;
}

.compare-overlay .toggle svg {
	fill: #FFFFFF;
	width: 40px;
}

.compare-overlay.down .toggle {
	transform: rotate(180deg);
}

.compare-overlay span.info {
	position: absolute;
	top: 10px;
	color: #FFFFFF;
}

.compare-overlay div {
	position: relative;
	display: inline-block;
	text-decoration: none;
	width: 150px;
	margin: 5px;
}

.compare-overlay div a.remove {
	display: block;
	position: absolute;
	top: 1px;
	right: 1px;
	width: 25px;
	height: 25px;
	z-index: 1;
	background-color: rgba(29, 29, 27, 0.9);
	border-radius: 4px;
}

.compare-overlay div a.remove svg {
	fill: #FFFFFF;
}

.compare-overlay div .vehicle-text {
	padding: 5px;
}

.compare-overlay div .vehicle-tags,
.compare-overlay div .vehicle-data {
	position: relative;
	top: auto;
	right: auto;
	margin-bottom: auto;
	font-size: 11px;
}

.compare-overlay div .vehicle-tags {
	width: 100%;
	text-align: center;
}

.compare-overlay div .vehicle-tags span {
	float: none;
	font-size: 13px;
	display: inline-block;
	margin: 0 auto;
}

.compare-overlay div .vehicle-data b {
	font-weight: 700;
}

.compare-overlay .button {
	position: absolute;
	display: inline-block;
	float: right;
	width: 150px;
	margin-top: 50px;
	height: 100px;
	padding-top: 60px;
}

.compare-overlay .button svg {
	position: absolute;
	top: -5px;
	left: 50%;
	margin-left: -50px;
	width: 100px;
	height: 100px;
	fill: #FFFFFF;
}

.compare-image {
	max-width: 250px;
	position: relative;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}

.compare-image img {
	display: block;
}

.compare-image a.remove {
	display: block;
	position: absolute;
	top: 1px;
	right: 1px;
	width: 25px;
	height: 25px;
	z-index: 1;
	background-color: rgba(29, 29, 27, 0.9);
	border-radius: 4px;
}

.compare-image a.remove svg {
	fill: #FFFFFF;
}

.need-help {
	border-top: solid 1px #E6E6E6;
	border-bottom: solid 1px #E6E6E6;
	background: url(/images/need-help-bg.png) no-repeat right center #F7F7F7;
}

.need-help p {
	font-size: 18px;
	line-height: 36px;
	color: #B3B3B3;
}

.need-help a {
	margin-right: 20px;
}

.bdlease iframe {
	border: 0;
	width: 1px;
	min-width: 100%;
	min-height: 390px;
}

.footer {
	position: relative;
	z-index: 2;
}

.footer-top {
	height: 60px;
	background: #FFF;
}

.footer-logo {
	display: block;
	position: relative;
	top: 10px;
	width: 120px;
}

.footer-top-left {
	float: left;
	height: 60px;
	border-left: solid 1px #D6D6D6;
}

.footer-dropdown {
	float: left;
	border-right: solid 1px #D6D6D6;
}

.footer-dropdown:hover a {
	background: #EEE;
}

.footer-dropdown a.current {
	padding-top: 10px;
	padding-bottom: 10px;
}

.footer-dropdown a:hover {
	background: #DDD;
}

.footer-logo {
	float: right;
}

.footer-bottom {
	padding: 35px 0;
	background: #FFFFFF;
	color: #4D4D4D;
	line-height: 1.8;
}

.footer-bottom a {
	float: left;
	clear: both;
	text-decoration: none;
}

.footer-bottom a {
	color: #333333;
}

.footer-bottom a:hover {
	color: #565656;
}

.footer-bottom .grid>div>b {
	display: block;
	font-size: 130%;
}

.footer-menu {
	flex: 1;
	padding: 40px 0;
}

.footer-menu a {
	display: block;
}

.footer-menu a.instagram,
.footer-menu a.facebook,
.footer-menu a.linkedin {
	display: inline-block;
	clear: none;
	height: 24px;
	width: 24px;
	margin-top: 5px;
	margin-right: 35px;
	fill: #B3B3B3;
}

.footer a.instagram:hover,
.footer a.facebook:hover,
.footer a.linkedin:hover {
	fill: #4D4D4D;
}

.footer input.email-alert {
	width: 260px;
	margin-bottom: 10px;
}

.footer-created-by {
	padding: 30px 0;
	border-top: 1px solid #E6E6E6;
	background: #FFF;
}

.footer-created-by span.left {
	text-align: left;
}

.footer-created-by span.right {
	float: right;
	text-align: right;
}

.footer-created-by a {
	text-decoration: none;
	color: #999999;
	font-size: 14px;
	margin-right: 14px;
}

.footer-created-by a:hover {
	color: #666;
}

#save_search {
	position: relative;
	padding: 15px;
	margin-bottom: 25px;
	background-color: #F9B626;
	color: #FFFFFF;
	border-radius: 4px;
}

#save_search button {
	border: 1px solid #FFFFFF;
}

#save_search span.close {
	display: block;
	position: absolute;
	top: 15px;
	right: 15px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

#save_search span.close svg {
	fill: #FFFFFF;
}

h3.title {
	color: #F9B626;
}

div.vehicles {
	position: relative;
}

div.vehicles div.buttons a {
	display: block;
	margin-bottom: 10px;
}

/* div#vehicles{
	margin-top:20px;
} */
#loader {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	background-color: rgba(244, 244, 244, 0.5);
	background-image: url('/images/ajax-loader.gif');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center center;
}

.stock-filters-reset-top {
	float: right;
	color: #BFBFBF;
	text-decoration: none;
}

.stock-filters-reset-top:hover {
	color: #FFB81C;
}

#filters {
	background-color: #FFFFFF;
}

#filters .results,
#filters .filter {
	margin-bottom: 20px;
}

#filters .filter:first-child {
	border-top: 0;
}

#filters .results .search {
	text-align: left;
	overflow: hidden;
}

#filters .results .search input {
	width: calc(100% - 58px);
}

#filters .results .search input,
#filters .results .search button {
	vertical-align: top;
	float: left;
}

#filters .results .tags a.tag,
#filters .results a.remove_tags {
	padding: 5px 10px;
	display: inline-block;
	border: 1px solid #999999;
	border-radius: 4px;
	text-decoration: none;
}

#filters .filter .title,
#filters .filter .options {
	position: relative;
	display: block;
}

#filters .filter .title {
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	color: #000000;
	margin-bottom: 10px;
	cursor: pointer;
}

#filters .filter .options input[type=checkbox], input.checkbox {
	display: none;
}

#filters .filter .options input[type=checkbox]+label, input.checkbox+label {
	position: relative;
	display: inline-block;
	margin: 2px 0 8px;
	padding-left: 30px;
}

#filters .filter .options input[type=checkbox]+label:before, input.checkbox+label:before {
	position: absolute;
	left: 0px;
	top: 3px;
	display: block;
	width: 16px;
	height: 16px;
	background-image: url('../images/sprite_checkbox.png');
	background-position: 0px 0px;
	background-repeat: no-repeat;
	content: "";
}

#filters .filter .options input[type=checkbox]:checked+label:before, input.checkbox:checked+label:before {
	background-position: -16px 0px;
}

#filters .filter.hide_options .options {
	display: none;
}

#filters .filter .title .toggle {
	display: block;
	position: absolute;
	top: 6px;
	right: 0;
	width: 12px;
	height: 12px;
	background-image: url('../images/icon_arrow.svg');
	background-repeat: no-repeat;
	-ms-transform: rotate(180deg);
	/* IE 9 */
	-webkit-transform: rotate(180deg);
	/* Chrome, Safari, Opera */
	transform: rotate(180deg);
	opacity: .25;
}

#filters .filter.hide_options .title .toggle {
	-ms-transform: rotate(0deg);
	/* IE 9 */
	-webkit-transform: rotate(0deg);
	/* Chrome, Safari, Opera */
	transform: rotate(0deg);
}

#filters #hours_slider_range {
	margin: 10px 0;
}

#filters .filter .ui-slider {
	border: solid 10px #FFF;
	background-color: #E6E6E6;
	height: 2px;
}

#filters .filter .ui-slider-horizontal .ui-slider-handle {
	top: -10px;
}

#filters .filter .ui-widget.ui-widget-content {
	/* border:0; */
}

#filters .filter .ui-widget-header {
	background-color: #F9B625;
}

#filters .filter .ui-slider-handle {
	border-radius: 16px;
	border: 0;
	background-color: #F9B625;
}

.stock-filter-button {
	display: none;
}

.stock-filter-button svg {
	position: relative;
	top: 5px;
	fill: #FFFFFF;
}

.button.stock-filters-show-results {
	display: none;
}

.button.layout {
	display: none;
	float: right;
	margin-top: 15px;
	padding: 3px 16px;
	height: 42px;
	line-height: 40px;
	border-color: #E6E6E6;
}

.button.layout:nth-child(3) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right: 0;
}

.button.layout:nth-child(2) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.button.layout svg {
	fill: #E6E6E6;
}

.button.layout.active svg {
	fill: #FFB81C;
}

.vehicles .categories {}

.vehicles .categories a {
	float: left;
	width: 118px;
	height: 78px;
	margin-right: 20px;
	margin-bottom: 20px;
	text-align: center;
	border: 1px solid #E6E6E6;
	border-radius: 2px;
}

.vehicles .categories a:hover {
	/* box-shadow: 0 1px 4px 0 rgba(0,0,0,0.25); */
	border-color: #F9B625;
}

.vehicles .categories a:nth-child(even) {
	margin-right: 0;
}

.vehicles .categories a svg {
	width: 100%;
	margin-top: 10px;
	max-height: 57px;
	max-width: 57px;
	fill: #4D4D4D;
}

.vehicles .categories a:hover svg {
	fill: #1A1A18;
}

.vehicles .categories a.active {
	background-color: #FFF6E0;
	border-color: #F9B625;
}

.vehicles .categories a.active svg {
	fill: #F9B625;
}

.vehicle,
.contact_box,
a.service,
a.service_info,
.employee {
	display: block;
	position: relative;
	border-radius: 4px;
	border: 1px solid #E6E6E6;
	background: #FFF;
	text-decoration: none;
	overflow: hidden;
	transition: all .25s;
	height: 100%;
	/* margin-bottom:40px; */
}

.employee {
	position: relative;
	min-height: 592px;
}

.vehicle:hover {
	/* box-shadow: 0 1px 4px 0 rgba(0,0,0,0.25); */
	box-shadow: 0 12px 24px 0 rgba(222, 222, 222, 0.3);
}

.vehicle-image,
.contact_box .top,
.employee-image {
	display: block;
	position: relative;
	overflow: hidden;
}

.contact_box .top {
	height: 215px;
	padding: 22px 35px 25px;
	font-size: 16px;
	line-height: 34px;
}

.contact_box .top b {
	display: block;
	font-size: 20px;
	margin: 10px 0;
}

.contact_box .top img {
	position: absolute;
	left: 180px;
	bottom: 0;
	width: 150px;
}

.vehicle-image .swiper-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.vehicle-image::before,
.employee-image::before {
	content: "";
	display: block;
	margin-top: 75%;
}

.vehicle-image::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	height: 50%;
	width: 100%;
	z-index: 1;
}

.vehicle-image:hover::after {
	opacity: 0;
}

.vehicle-image img,
.employee-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: none;
	height: 100%;
	transition: all .5s;
	object-fit: cover;
}

.vehicle:hover .vehicle-image img,
.employee:hover .employee-image img {
	top: -1.5%;
	left: -1.5%;
	width: 103%;
}

.vehicle-image-text {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 30px;
	box-sizing: border-box;
	color: #FFF;
	line-height: 1;
	z-index: 2;
	transition: all .5s;
	/*text-shadow:0px 0px 20px #000000, 0px 0px 4px #000000;*/
}

.vehicle:hover .vehicle-image-text {
	opacity: 0;
}

.vehicle-data {
	font-size: 17px;
}

.vehicle-data .vehicle-brand {
	display: block;
	margin-bottom: 5px;
}

.vehicle-data .vehicle-brand {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 0;
	color: #F9B626;
}

.vehicle-data .vehicle-type {
	display: block;
}

.vehicle-data .vehicle-type {
	font-weight: 600;
	margin-bottom: 5px;
	color: #333333;
}

.vehicle-image .labels {
	position: absolute;
	top: 15px;
	right: 15px;
	display: inline-block;
	z-index: 2;
}

.vehicle-image .labels .new,
.vehicle-image .labels .reserved,
.vehicle-image .labels .sold,
.vehicle-image .labels .expected {
	padding: 4px 15px;
	color: #83BB48;
	background-color: #E2F3CF;
	text-transform: lowercase;
	font-size: 15px;
	letter-spacing: 0.5px;
	border: none;
	border-radius: 12px;
}

.vehicle-image .labels .reserved {
	background-color: #FF6406;
}

.vehicle-image .labels .sold {
	color: #FFB800;
	background-color: #FFF6E0;
}

.vehicle-image .labels .expected {
	background-color: #03A9F4;
}

.layout-image {
	position: relative;
	text-align: center;
}

.layout-image svg {
	max-height: 90px;
	display: inline-block;
	fill: #1A1A18;
}

.vehicle:hover .layout-image svg {
	fill: #F9B625;
}

.vehicle-text,
.employee-text,
.contact_box .bottom {
	display: block;
	position: relative;
	padding: 18px 20px;
}

.vehicle-text {
	/* min-height:154px; */
	padding-bottom: 74px;
}

.vehicle.sold .vehicle-text {
	padding-bottom: 0;
}

.contact_box .bottom {
	height: 79px;
	padding: 12px 35px 15px;
	color: #FFFFFF;
	background-color: #F9B626;
}

.vehicle-tags {
	position: absolute;
	top: 25px;
	right: 35px;
	display: inline-block;
	margin-bottom: 25px;
	overflow: hidden;
}

.vehicle-tags span {
	float: left;
	margin-left: 12px;
	padding: 0 15px;
	border: solid 1px #F9B626;
	border-radius: 12px;
	line-height: 23px;
	color: #F9B626;
}

.vehicle.new .vehicle-tags span {
	border-color: #F9B626;
	color: #F9B626;
}

.vehicle.reserved .vehicle-tags span {
	border-color: #FF6406;
	color: #FF6406;
}

.vehicle.sold .vehicle-tags span {
	border-color: #FFC107;
	color: #FFC107;
}

.vehicle.expected .vehicle-tags span {
	border-color: #03A9F4;
	color: #03A9F4;
}

.vehicle-data {}

.vehicle-data>span {
	display: inline-block;
	padding: 3px 10px 3px 0;
	color: #B3B3B3;
	font-weight: 600;
}

.vehicle-data>span svg {
	float: left;
	margin-right: 10px;
	width: 20px;
	height: 20px;
}

.vehicle-price {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	display: block;
	box-sizing: border-box;
	padding: 18px 20px;
	border-top: 1px solid #EDEDED;
	color: #333333;
	font-weight: bold;
}

.contact_box .bottom>div {
	position: relative;
	padding-left: 30px;
	margin-bottom: 5px;
}

.contact_box .bottom svg {
	position: absolute;
	top: 2px;
	left: 0;
	max-width: 20px;
	max-height: 20px;
	margin-right: 5px;
	line-height: 20px;
	fill: #FFFFFF;
}

a.service {
	display: block;
	padding: 25px;
	height: calc(100% - 30px);
	box-sizing: border-box;
}

a.service img {
	display: block;
	margin: 0 auto 25px;
	width: 50%;
}

a.service_info {
	display: block;
}

a.service_info img {
	width: 100%;
}

.employee-data {
	display: block;
}

.employee-data>* {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-top: 10px;
	text-decoration: none;
}

.employee-data svg {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 20px;
	max-height: 20px;
	margin-right: 5px;
	line-height: 20px;
}

.employee-languages img {
	height: 20px;
}

.mobile-images {
	display: none;
	position: relative;
	width: 100%;
	height: auto;
}

.swiper-prev,
.swiper-next {
	display: none;
	z-index: 3;
	position: absolute;
	margin-top: -25px;
	top: 50%;
	left: 10px;
	width: 50px;
	height: 50px;
}

.swiper-next {
	left: auto;
	right: 10px;
}

.swiper-prev:before,
.swiper-next:before {
	content: '';
	position: absolute;
	top: 15px;
	left: 19px;
	display: block;
	width: 16px;
	height: 16px;
	border-right: solid 2px #FFF;
	border-bottom: solid 2px #FFF;
	transform: rotate(135deg);
	cursor: pointer;
}

.swiper-next:before {
	left: 11px;
	transform: rotate(-45deg);
}

.swiper-pagination-bullet-active {
	background-color: #FFFFFF;
}

.swiper-slide-active {
	z-index: 2;
}

.vehicle-sold {}

.vehicle-sold .vehicle-details-images {
	overflow: hidden;
}

.vehicle-sold .vehicle-details-images .enlarge {
	display: none;
}

.vehicle-sold .vehicle-details-images:after {
	content: attr(data-sold) "";
	position: absolute;
	color: #FFFFFF;
	background-color: #F9B626;
	/*
			padding:10px 100px;
			top:25px;
			right:-75px;
			transform:rotate(45deg);
*/
	top: 15px;
	right: 15px;
	padding: 4px 15px;
	text-transform: lowercase;
	font-size: 15px;
	letter-spacing: 0.5px;
	border: none;
	border-radius: 12px;
}

.vehicle-details-images .small a.panorama span.icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
	width: 60px;
	height: 60px;
}

.vehicle-details-images .small a.panorama span.icon svg {
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 1;
}

.vehicle-details-images .large a span.icon svg {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -80px;
	margin-left: -80px;
	width: 160px;
	height: 160px;
	opacity: 1;
	display: none;
}

.vehicle-details-images .large a.panorama span.icon svg {
	display: block;
}

.vehicle-details-header h1 {
	color: #FFF;
}

.vehicle-details-brand {
	color: #FFF;
	font-size: 24px;
	font-weight: normal;
	margin: 0 0 10px;
}

.vehicle-details-price {
	position: relative;
	display: block;
	max-width: 304px;
	padding: 35px 35px 165px 35px;
	margin-bottom: 40px;
	background-color: #FFFFFF;
	color: #F9B626;
	border-radius: 4px;
	box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.1);
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
}

.vehicle-details-price.sold,
.vehicle-details-price.no_price {
	margin-top: 25px;
	padding: 35px;
}

.vehicle-details-price.no_price {
	padding-bottom: 70px;
}

.vehicle-details-price a {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

.vehicle-details-price a.offer,
.vehicle-details-price a.call,
.vehicle-details-price a.contact {
	/*bottom:135px;*/
	bottom: 90px;
	border-radius: 0;
	border-bottom: 1px solid #999999;
}

.vehicle-details-price a.call {
	bottom: 90px;
}

.vehicle-details-price a.contact {
	bottom: 45px;
}

.vehicle-details-price a.lease {
	bottom: 0;
}

.vehicle-details-price a.offer:hover,
.vehicle-details-price a.call:hover {
	border-bottom: 1px solid #999999;
}

.vehicle-details-price .price {
	margin-top: 5px;
	font-size: 24px;
	font-weight: bold;
	color: #333333;
	line-height: 26px;
}

.vehicle-details-price .price .lease {
	display: block;
	margin-top: 5px;
	font-size: 16px;
	font-weight: normal;
	color: #666666;
	line-height: 20px;
}

.vehicle-details-price .button {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.vehicle-details-sold {
	width: 100%;
	padding: 25px 0;
	font-size: 26px;
	color: #F9B625;
	text-align: center;
}

.vehicle-details-tags {
	margin-top: 50px;
	margin-bottom: 50px;
	border-left: solid 1px #D6D6D6;
	line-height: 1;
	overflow: hidden;
}

.vehicle-details-tags div {
	float: left;
	padding: 0 30px;
	border-right: solid 1px #D6D6D6;
	text-align: center;
}

.vehicle-details-tags div b {
	display: block;
	padding: 10px 0;
	font-size: 162%;
	color: #F9B626;
}

.vehicle-details-specifications {
	margin-bottom: 30px;
}

.vehicle-details-specifications.common {}

.pure-u-1 .vehicle-details-specifications.common h3,
.vehicle-details-specifications p.specification-title {
	font-size: 20px;
	line-height: 1;
	font-weight: 600;
	margin: 32px 0;
	line-height: 33px;
	padding-bottom: 10px;
	border-bottom: solid 1px #E6E6E6;
}

.vehicle-details-specifications table {
	color: #4D4D4D;
}

.vehicle-details-specifications:nth-child(2n) table,
.vehicle-details-specifications:nth-child(2n) h3 {
	margin-right: 20px;
}

.vehicle-details-specifications:nth-child(2n+1) table,
.vehicle-details-specifications:nth-child(2n+1) h3 {
	margin-left: 20px;
}

.vehicle-details-specifications table td:not(.full_width):first-child {
	width: 195px;
	font-weight: 600;
}

.vehicle-details-specifications ul {
	padding-left: 15px;
}

.vehicle-details-specifications.common table {
	margin: 0;
}

.vehicle-details-rental {
	margin-bottom: 30px;
	margin-right: 0;
	color: #FFFFFF;
	padding: 25px;
	background-color: #1D1D1B;
	box-sizing: border-box;
	border-radius: 4px;
}

.vehicle-details-buttons {
	margin: 20px 0;
	border-top: solid 1px #D6D6D6;
	padding-top: 50px;
}

.vehicle-details-images {}

.vehicle-details-images>div:nth-child(n+2) {
	margin-top: 15px;
}

.vehicle-details-images .large {
	margin-right: 0;
}

.vehicle-details-images .small {
	margin-bottom: 20px;
}

.vehicle-details-images a {
	display: block;
	position: relative;
}

.vehicle-details-images a.video {}

.vehicle-details-images a svg {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	opacity: .5;
	fill: #FFF;
}

.vehicle-details-images img {
	display: block;
	width: 100%;
	border-radius: 4px;
}

.video-embed a.video {
	position: relative;
	height: auto;
	display: inline-block;
}

.vehicle-details-images a.video {}

.swiper-container .video::after,
.vehicle-details-images a.video::after,
.video-embed a.video::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -60px 0 0 -34px;
	width: 0px;
	height: 0px;
	border-top: solid 60px transparent;
	border-left: solid 90px #FFF;
	border-bottom: solid 60px transparent;
}

.swiper-container .video.small::after,
.vehicle-details-images a.video.small::after {
	margin: -20px 0 0 -11px;
	border-top: solid 20px transparent;
	border-left: solid 30px #FFF;
	border-bottom: solid 20px transparent;
}

.vehicle-details-info {
	margin-left: 20px;
}

.vehicle-details-info h1 {
	font-size: 28px;
}

/*
	.vehicle-details-info h1,
	.vehicle-details-info h3{
		color:#FFF;
		white-space:nowrap;
		overflow:hidden;
		text-overflow:ellipsis;
	}

	*/
.vehicle-details-info a {}

.offer,
.searches,
.favorite {}

.offer .bold,
.searches .bold,
.favorite .bold {
	font-weight: bold;
}

.offer .offer-image,
.searches .searches-icon,
.favorite .favorite-image {
	position: relative;
	min-height: 155px;
	min-width: 155px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.searches .searches-icon {
	min-height: 75px;
}

.searches .searches-icon svg {
	position: absolute;
	top: 10px;
	left: 70px;
	margin: 0 auto;
	width: 25%;
	fill: #666;
}

.offer .offer-date,
.favorite .favorite-date {
	color: #666;
}

.offer .offer-title a,
.searches .searches-title a,
.favorite .favorite-title a {
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	color: #666;
}

.offer .offer-delete,
.searches .searches-delete,
.favorite .favorite-delete {
	text-align: center;
}

.offer .offer-delete a,
.searches .searches-delete a,
.favorite .favorite-delete a {
	text-decoration: none;
	color: #666;
}

.offer .offer-delete a svg,
.searches .searches-delete a svg,
.favorite .favorite-delete a svg {
	max-width: 28px;
}

/* Vertical align CSS */
.vertical {
	display: block;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.current_price,
.your_offer {
	color: #F9B626;
}

.current_price strong {
	font-size: 1.4em;
}

/*
// Pagination
*/
.pagination {
	display: block;
	margin-top: 20px;
	list-style: none;
	text-align: center;
	overflow: hidden;
}

.pagination li {
	display: inline-block;
	border: solid 1px #F5F5F5;
	text-align: center;
	line-height: 45px;
}

.pagination li:hover {
	background: #F5F5F5;
}

.pagination li.active {
	background: #03A9F4;
	color: #FFF;
}

.pagination li.disabled {
	color: #FFF;
}

.pagination li+li {
	border-left: 0;
}

.pagination li:first-child, .pagination li:last-child {
	border: 0;
}

.pagination li:first-child:hover, .pagination li:last-child:hover {
	background: transparent;
	font-weight: bold;
}

.pagination li>* {
	display: block;
	min-width: 35px;
	padding: 0 5px;
	text-decoration: none;
}

/*
// CMS styles
*/

div.label {
	margin-bottom: 25px;
}

a.cms-add,
a.cms-delete {
	display: inline-block;
	padding: 10px 20px;
	margin: 0 0 20px 10px;
	background-color: #03A9F4;
	color: #FFFFFF;
	text-decoration: none;
	border-radius: 4px;
}

a.cms-add.right,
a.cms-delete.right {
	float: right;
}

div.specification {
	position: relative;
	display: block;
	margin-bottom: 10px;
}

div.specification span.remove,
div.edit_axle span.remove {
	display: block;
	margin-top: 10px;
	width: 20px;
	height: 20px;
	background-image: url('/images/remove.svg');
	cursor: pointer;
}

tr.axles td {
	border-bottom: solid 1px #E6E6E6;
	padding-top: 50px;
	font-weight: normal !important;
}

tr.axles span.location,
tr.axles span.breaking,
tr.axles span.suspension {
	font-weight: bold;
	color: #4D4D4D;
}

div.axle {
	/*border:1px solid blue;*/
	position: relative;
	height: 100px;
	width: 374px;
	margin-bottom: 50px;
}

div.axle span.tire_L1,
div.axle span.tire_L2,
div.axle span.tire_R1,
div.axle span.tire_R2 {
	position: absolute;
	display: inline-block;
	top: 0;
	width: 44px;
	height: 52px;
	padding: 24px 0;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	color: #4D4D4D;
}
div.axle.steered_axle span.tire_L1 svg,
div.axle.steered_axle span.tire_L2 svg,
div.axle.steered_axle span.tire_R1 svg,
div.axle.steered_axle span.tire_R2 svg {
	transform: rotate(-10deg);
}

div.axle span.tire_L1,
div.axle span.tire_L2 {
	left: 40px;
}

div.axle span.tire_L1+span.tire_L2 {
	left: 0;
}

div.axle span.tire_R1,
div.axle span.tire_R2 {
	left: 290px;
}

div.axle span.tire_R1+span.tire_R2 {
	left: 330px;
}

div.axle.uneven span.tire_L1,
div.axle.uneven span.tire_L2 {
	left: 60px;
}

div.axle.uneven span.tire_L1+span.tire_L2 {
	left: 20px;
}

div.axle.uneven span.tire_R1,
div.axle.uneven span.tire_R2 {
	left: 270px;
}

div.axle.uneven span.tire_R1+span.tire_R2 {
	left: 330px;
}

div.axle span.tire_L1 svg,
div.axle span.tire_L2 svg,
div.axle span.tire_R1 svg,
div.axle span.tire_R2 svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	fill: #E6E6E6;
}

div.axle span.tire_L1 span.percentage,
div.axle span.tire_L2 span.percentage,
div.axle span.tire_R1 span.percentage,
div.axle span.tire_R2 span.percentage {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
}

div.axle span.spacer {
	position: absolute;
	display: inline-block;
	top: 10px;
	left: 80px;
	width: 212px;
	height: 4px;
	margin: 28px 0;
}

div.axle span.spacer svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	fill: #E6E6E6;
}

div.axle.uneven span.spacer {
	display: none;
}

div.axle span.size {
	position: absolute;
	top: 10px;
	left: 90px;
	width: 190px;
	text-align: center;
}

#fileupload,
#imageupload,
#imageupload_360 {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

#add_youtube {
	margin-left: 4px;
}

#add_360 {
	margin-left: 4px;
}

.fileupload-button {
	display: inline-block;
	float: left;
	padding: 10px 20px;
	margin: 0 0 20px 10px;
	background-color: #03A9F4;
	border-radius: 4px;
	color: #FFFFFF;
	text-decoration: none;
}

.bar {
	height: 18px;
	background: green;
}

#image_results div.image,
#image_results div.image_360,
#image_results div.video {
	float: left;
	position: relative;
	max-width: 300px;
	max-height: 300px;
	margin: 10px;
}

#file_results div.file {
	position: relative;
	display: block;
	margin: 10px;
}

#image_results div.image img,
#image_results div.image_360 img,
#image_results div.video img {
	max-width: 100%;
	max-height: 100%;
}

#image_results div.image span.delete,
#image_results div.image_360 span.delete,
#image_results div.video span.delete,
#file_results div.file span.delete {
	position: absolute;
	top: 1px;
	right: 1px;
	display: block;
	width: 25px;
	height: 25px;
	cursor: pointer;
}

#image_results div.image span.delete svg,
#image_results div.image_360 span.delete svg,
#image_results div.video span.delete svg,
#file_results div.file span.delete svg {
	width: 25px;
	height: 25px;
	fill: #FFFFFF;
	background-color: rgba(29, 29, 27, 0.9);
	border-radius: 4px;
}

#image_results div.sortable_item {
	cursor: move;
}

#image_results div.video {}

.pagination {
	padding-left: 0;
}

.pagination li.active {
	border: solid 1px #F9B626;
	border-radius: 4px;
	background: #F9B626;
}

.pagination li.disabled {
	display: none;
}

.table {
	border: 1px solid #cbcbcb;
	border-bottom: 0;
}

.table div.pure-g>div {
	box-sizing: border-box;
	padding: .5em 1em;
	border-bottom: 1px solid #cbcbcb;
}

.table>div:nth-child(odd) {
	background-color: #f2f2f2;
}

.ui-sortable-helper {}

.contact-form input,
.contact-form textarea {
	background-color: #FFFFFF;
	width: 100%;
}

.contact-form .input {
	margin-bottom: 15px;
}

.contact-form textarea {
	min-height: 120px;
}

#newsletter_popup,
#notification_popup {
	position: fixed;
	width: 588px;
	right: 40px;
	bottom: 40px;

	z-index: 6;

	background: #FFFFFF;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 4px;

	padding: 40px;

	transition: bottom 0.4s;
}

#newsletter_popup.hide,
#notification_popup.hide {
	bottom: -300px;
}

#newsletter_popup .close,
#notification_popup .close {
	position: absolute;
	top: 26px;
	right: 26px;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

#newsletter_popup .close svg,
#notification_popup .close svg {
	width: 100%;
	height: 100%;
}

#newsletter_popup input[type=text] {
	float: left;
	padding-top: 12px;
	padding-bottom: 12px;
}

#newsletter_popup button {
	margin-left: 12px;
}

#newsletter_popup form>div {
	float: left;
}

#notification_popup {
	width: 588px;
	right: auto;
	bottom: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	max-height: calc(100vh - 140px);
}

#notification_popup h3 {
	font-size: 28px;
}

#notification_popup li {
	display: block;
	width: 50%;
	float: left;
	text-align: center;
	box-sizing: border-box;
	padding: 20px;
}

#notification_popup .icon {
	position: relative;
	display: block;
	margin: 0 auto;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin-bottom: 15px;
	background-color: #F9B625;
}

#notification_popup .icon svg {
	position: relative;
	top: 20px;
	width: 60px;
	height: 60px;
}

#notification_popup .icon.distance svg {
	top: 15px;
}

.loading-vehicles {
	padding: 20px;
}

@media (max-width: 47.9em) {
	#notification_popup {
		position: absolute;
		top: 50px;
		transform: translate(-50%, 0);
		width: 90%;
		padding: 10px;
		overflow-y:scroll;
	}

	#notification_popup li {
		width: 100%;
		padding: 10px;
		text-align: left;
	}

	#notification_popup .icon {
		display: inline-block;
		width: 50px;
		height: 50px;
		text-align: center;
		margin-bottom: 0;
		margin-right: 15px;
	}

	#notification_popup .icon svg {
		top: 10px;
		width: 30px;
		height: 30px;
	}

	#notification_popup .icon.distance svg {
		top: 7px;
	}
}


@media (max-width: 79.9em) {
	a.mobile-account {
		display: block;
		padding: 16px;
	}

	.header-login {
		display: none;
	}

	.header-right .header-dropdown.dropdown-currency span,
	.header-right .header-dropdown.dropdown-language span {
		display: none;
	}

	.search-categories {
		width: 100%;
	}

	.search-categories a {
		width: 11.4%;
	}

	.share a.favorite,
	.share a.compare,
	.share a.pdf,
	.sort a.pdf {
		margin-right: 20px;
	}

	span.icon_label {
		display: none;
	}
}

@media (max-width: 63.9em) {
	a#call, a#contact {
		display: block;
	}

	.share a.call,
	.share a.contact {
		display: none;
	}

	div.header .header-logo,
	div.header .header-small-logo {
		top: 20px;
		height: 58, 5px;
		width: 75px;
		margin-left: -37.5px;
	}

	div.header .header-icon-only,
	body.main_header div.header .header-icon-only {
		display:none;
	}

	tr+tr td {
		padding-top: 0;
	}

	tr+tr td:first-child {
		padding-top: 20px;
	}

	div.notice {
		z-index: 16000005;
	}

	body.show-notice div.notice {
		height: 136px;
	}

	body.show-notice div.header {
		top: 136px;
	}

	div.header,
	body.main_header div.header {
		z-index: 16000004;
		height: 60px;
	}

	body.main_header div.header .header-logo {
		top: 15px;
		left: 140px;
		width: 100px;
		display: block;
	}

	body.main_header div.search .header-logo {
		display: none;
	}

	div.label {
		margin-top: 25px;
		margin-bottom: 0;
	}

	.vehicle-image .labels {
		top: 5px;
		right: 5px;
	}

	.vehicle-image .labels .new,
	.vehicle-image .labels .reserved,
	.vehicle-image .labels .sold,
	.vehicle-image .labels .expected {
		padding: 4px 10px;
		font-size: 12px;
		letter-spacing: 0.5px;
	}

	.swiper-prev,
	.swiper-next {
		margin-top: -25px;
		top: 50%;
		left: 0px;
		width: 30px;
		height: 30px;
	}

	.swiper-next {
		left: auto;
		right: 0px;
	}

	.swiper-prev:before,
	.swiper-next:before {
		top: 15px;
		left: 14px;
		width: 16px;
		height: 16px;
	}

	.swiper-next:before {
		left: 0px;
	}

	.msg_error,
	.msg_notice {
		left: auto;
		width: 100%;
		margin-left: 0;
		padding: 15px 30px;
		box-sizing: border-box;
	}

	.header-right {
		width: 100%;
		transform: translateY(-100%);
	}

	.show-mobile .header-right {
		transform: translateY(0%);
	}

	div.header span.mobile-background {
		display: none;
	}

	.header-mobile-icons .header-dropdown a.current {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.mobile-menu {
		display: block;
	}

	.header-right .header-dropdown span {
		display: none;
	}

	.header-right .header-mobile-icons {
		position: fixed;
		top: 100%;
		right: 0;
		z-index: 11;
		transition: all .5s;
	}

	.show-mobile .header-mobile-icons {
		top: 0;
	}

	/*
		.header-right .header-dropdown {
			display:none;
		}
		.header-right .header-dropdown span {
			display: none;
		}
		.header-right .header-dropdown.dropdown-currency,
		.header-right .header-dropdown.dropdown-language {
			display:block;
		}
		.header-right .header-dropdown.dropdown-currency span,
		.header-right .header-dropdown.dropdown-language span {
			display:block;
		}
*/
	.header-menu {
		position: relative;
		width: 100%;
		max-height: 100vh;
		margin-top: 0;
		text-align: left;
		background-color: #1D1D1B;
		padding: 60px 0 0 0;
	}

	a.mobile-account,
	body.small_header a.mobile-account {
		display: block;
		padding: 10px 16px;
	}

	.header-login {
		display: none;
		padding-top: 0;
	}

	.header-dropdown a,
	.header-login a {
		top: 0;
	}

	.header-login a {
		display: none;
	}

	.header-login a.current {
		display: block;
	}

	.header-login a span {
		display: none;
		margin-left: 0;
	}

	body.small_header .header-menu {
		padding: 100px 0 0 0;
	}

	.header-menu>div {
		display: block;
	}

	.header-menu a {
		line-height: 40px;
	}

	.header-menu a.active {
		color: #FFFFFF;
	}

	.header-menu>ul {
		width: 100%;
		border-top: 60px solid #1D1D1B;
		border-bottom: 20px solid #1D1D1B;
	}

	.header-menu>ul>li {
		float: none;
		display: block;
	}

	.header-menu>ul>li>ul {
		display: block;
		position: relative;
		top: auto;
		left: auto;
		margin-left: 20px;
	}

	.header-menu>ul>li>ul>li {}

	.header-menu>ul>li>ul>li>a {
		line-height: 40px;
	}

	body.main_header .header-menu {
		padding-left: 0;
	}

	.header-login {
		display: none;
		position: relative;
		text-align: left;
		border-left: none;
		height: 40px;
	}

	.header-login a {
		display: block;
		float: none;
		line-height: 40px;
		padding: 0 10px;
	}

	.header-login a.current {
		padding: 10px;
	}

	.mobile-account {
		display: block;
	}

	.container {
		padding: 60px 0 0;
	}

	body.show-notice .container {
		padding-top: 196px;
	}

	body.show-notice.main_header .container {
		padding-top: 136px;
	}

	.slider {
		width: 100%;
		overflow: hidden;
		min-height: auto;
	}

	.slider .slider-slides {
		width: 200%;
	}

	.slider .slider-slides .slide img {
		margin-left: -25%;
	}

	.slider .video {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		overflow: hidden;
	}

	.slider .video video {
		height: 100%;
		width: 200%;
		margin-left: -50%;
	}

	.slider .video .play {
		min-height: 62.5vw;
	}

	.slider .video .play span {
		top: auto;
		bottom: 10px;
	}

	.slider-bar {
		position: relative;
	}

	.slider-bar>a,
	.slider-bar>span {
		display: block;
	}

	.slider-bar span.chat {
		display: none;
	}

	.slider-bar>*+* {
		margin-left: 0;
		margin-top: 10px;
	}

	.slider-bar svg {
		float: none;
	}

	.slide-text {
		top: 30px;
		left: 30px;
		font-size: 100%;
	}

	.slide-text.top_right {
		right: 30px;
		left: auto;
	}

	.slide-text.bottom_left {
		top: auto;
		bottom: 30px;
	}

	.slide-text.bottom_right {
		top: auto;
		right: 30px;
		bottom: 30px;
		left: auto;
	}

	.slide-text.top_right,
	.slide-text.bottom_left,
	.slide-text.bottom_right {
		top: 0;
		right: 0px;
		left: 0px;
	}

	.slide-text,
	body.main_header .slide-text {
		top: 0;
		padding: 30px;
		max-width: calc(100vw - 60px);
	}

	body.main_header .center.small {
		margin-top: 0;
	}

	.slider-nav {
		display: none;
	}

	.search form {
		width: 80%;
	}

	.search-categories a {
		width: 19%;
	}

	.search b {
		float: none;
		display: block;
		/* text-align:center; */
	}

	.search input {
		width: calc(100% - 58px);
	}

	.swiper-prev,
	.swiper-next {
		display: block;
	}

	.vehicle-details-images .grid-gutter>*,
	.vehicle-details-services .grid-gutter>*,
	div.grid-gutter.vehicles>*,
	div.grid-gutter#vehicles>* {
		padding: 10px;
	}

	div.grid-gutter#vehicles.layout-list>* {
		padding-left: 0;
		padding-right: 0;
	}

	div.grid-gutter#vehicles.layout-block>*:nth-child(2n-1) {
		padding-left: 0;
	}

	div.grid-gutter#vehicles.layout-block>*:nth-child(2n) {
		padding-right: 0;
	}

	.container .center {
		margin: 0 auto;
		padding-top: 20px;
		padding-bottom: 20px;
		/*background-color: red;*/
	}

	.container .center.newly_expected {
		padding-bottom: 5px;
	}

	.container .center.popular {
		padding-top: 5px;
	}

	.center {
		padding: 0 10px;
	}

	.grid-gutter {
		margin: 0;
	}

	.breadcrumble {
		display: none;
	}

	.stock-left,
	.filter-spacer {
		display: none;
	}

	.show-filters .stock-left,
	.show-filters .filter-spacer {
		display: block;
	}

	.show-filters .filter-spacer {
		background-color: rgba(0, 0, 0, .8)
	}

	.show-filters .stock-filters-show-results {
		display: inline-block;
	}

	/* .vehicle-text, */
	.employee-text,
	.contact_box .bottom {
		padding: 20px 30px;
	}

	.vehicle-text {
		padding-bottom: 18px;
	}

	.vehicle-price {
		position: relative;
		right: 0;
		bottom: 0;
	}

	.vehicle-tags span {
		margin-left: 0;
	}

	.vehicle-details-specifications table td {
		display: block;
	}

	.vehicle-details-specifications table td.checkbox {
		display: inline-block;
	}

	.vehicle-details-specifications table td+td {
		padding-left: 0;
	}

	.vehicle-details-images.grid-gutter {
		width: calc(100% + 30px) !important;
		margin-left: -15px;
	}

	.vehicle-details-tags {
		margin-top: 50px;
		margin-bottom: 50px;
		border-left: 0;
	}

	.vehicle-details-tags div {
		float: none;
		display: block;
		border-right: 0;
		padding: 0;
		text-align: left;
	}

	.vehicle-details-buttons {
		display: block;
		padding-top: 10px;
	}

	.vehicle-details-buttons a {
		float: none;
		display: block;
		margin-bottom: 5px;
	}

	.vehicle-details-rental {
		margin-right: 0;
	}

	.vehicle-details-info h1,
	.vehicle-details-info h3 {
		color: #333333;
	}

	.sort a.pdf svg,
	.share a.favorite svg,
	.share a.compare svg {
		fill: #333333;
	}

	.vehicle-details-specifications:nth-child(2n) table,
	.vehicle-details-specifications:nth-child(2n) h3 {
		margin-right: 0;
	}

	.vehicle-details-specifications:nth-child(2n+1) table,
	.vehicle-details-specifications:nth-child(2n+1) h3 {
		margin-left: 0;
	}

	.anchor-menu {
		display: none;
	}

	.anchor-menu+.center {
		padding-left: 0;
	}

	.stock-filter-button {
		display: block;
	}

	div.sort>a {
		display: block;
		margin-top: 15px;
	}

	div.sort div.dropdown-sort-container {
		margin: 15px 0 15px;
		/* width:100%; */
	}

	div.sort div.dropdown-sort-container div.dropdown-sort {
		position: relative;
		left: 0;
	}

	.grid-gutter .grid-gutter {
		width: 100%;
	}

	.container .submenu {
		padding-top: 5px;
		padding-bottom: 0;
	}

	.container .submenu a {
		display: block;
		padding: 5px 10px;
		margin-left: 0px;
	}

	.footer-top .center {
		padding: 0;
	}

	.footer-bottom {
		padding: 10px;
	}

	.footer-logo {
		display: none;
	}

	.footer-menu {
		display: block;
		min-width: 33%;
		flex: 0 1 auto;
		padding: 20px 0;
	}

	.need-help {
		padding-left: 30px;
		padding-right: 30px;
	}

	.stock {
		flex-direction: column;
	}

	.stock-left {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		min-width: 300px;
		max-width: 80%;
		height: 100%;
		padding: 82px 20px 20px;
		box-sizing: border-box;
		background-color: #FFFFFF;
		overflow-y: auto;
	}

	.filter-spacer {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9;
		width: 100%;
		height: 100%;
	}

	.stock-right {
		padding: 40px 20px 20px;
		box-sizing: border-box;
		border-left: solid 2px #E6E6E6;
	}

	#filters .filter .options {
		display: none;
	}

	#filters .filter.hide_options .options {
		display: block;
	}

	/*
	.vehicles .categories{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-content: stretch;
		margin-bottom:10px;
	}
		.vehicles .categories a{
			float:none;
			width:50%;
			margin-right:0;
			margin-bottom:0;
			box-sizing: border-box;
		}
*/

	.button.layout {
		display: block;
	}

	.vehicle {
		display: grid;
		grid-template-columns: 50% 1fr;
		grid-template-rows: 1fr auto;
		grid-template-areas: "image details" "image price";
	}

	.vehicle-image {
		grid-area: image;
		width: 100%;
	}

	.vehicle-text {
		grid-area: details;
	}

	.vehicle-price {
		grid-area: price;

		padding: 2px 20px 15px;
		border-top: 0;
	}

	div.layout-block .vehicle {
		grid-template-columns: auto;
		grid-template-rows: auto 1fr auto;
		grid-template-areas: "image" "details" "price";
	}

	#newsletter_popup {
		width: auto;
		left: 40px;
	}
}

@media (max-width: 47.9em) {
	.search-categories a {
		width: 32.33%;
	}

	.footer-menu {
		display: block;
		width: 100%;
		flex: 0 1 auto;
		padding: 20px 0;
	}

	#newsletter_popup {
		left: 20px;
		right: 20px;
		bottom: 20px;
		padding: 20px;
	}

	#newsletter_popup .close {
		top: 13px;
		right: 13px;
	}

	#newsletter_popup input {
		display: block;
		width: 100%;
	}

	#newsletter_popup button {
		display: block;
		margin-left: 0;
		margin-top: 12px;
	}
}

@media (max-width: 35.4em) {
	h1 {
		font-size: 32px;
	}

	.vehicle-details-info h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 24px;
	}

	h3 {
		font-size: 16px;
	}

	.panorama_viewer {
		top: 8vh;
		width: 90vw;
		height: 80vh;
	}

	input[type=text], input[type=email], input[type=search],
	select,
	textarea {
		width: auto;
		max-width: 100%;
	}

	.mobile-images {
		display: block;
		max-width: 350px;
	}

	.mobile-images a.panorama span.icon {
		position: absolute;
		top: 50%;
		left: 50%;
		margin-top: -40px;
		margin-left: -40px;
		width: 80px;
		height: 80px;
	}

	.mobile-images a.panorama span.icon svg {
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		opacity: 1;
		fill: #FFFFFF;
	}

	.vehicle:hover .vehicle-image img,
	.employee:hover .employee-image img {
		top: 0;
		left: 0;
		width: 100%;
	}

	.header-mobile-icons .header-dropdown a {
		padding: 0;
		text-align: center;
	}

	.header-mobile-icons .header-dropdown a.current,
	.header-mobile-icons .header-login a.current {
		padding: 10px;
	}

	.header-mobile-icons .header-dropdown a img {
		position: relative;
		top: auto;
		left: auto;
	}

	.header-mobile-icons .header-dropdown a:after {
		display: none;
	}

	.vehicle-details-images {
		display: none;
	}

	.search-categories a {
		width: 49%;
	}

	.vehicle-details-header h1 {
		color: #FFF;
	}

	h3.vehicle-details-brand {
		color: #FFF;
	}

	.share a.pdf svg, .sort a.pdf svg, .share a.favorite svg, .share a.compare svg {
		fill: #FFF;
	}

	.vehicle-data {
		font-size: 13px;
	}

	.vehicle-data .vehicle-brand {
		font-size: 16px;
		font-weight: 600;
	}

	.vehicle-price {
		font-size: 13px;
	}

	div.layout-list .vehicle-text {
		padding: 4px 10px;
	}

	div.layout-list .vehicle-text span.vehicle-type {
		overflow: hidden;
		line-height: 19.5px;
		max-height: 39px;
	}

	div.layout-list .vehicle-price {
		padding: 2px 10px 10px;
	}
}

@media(max-width: 400px) {
	div.layout-list .vehicle-data span {
		display: none;
	}

	div.layout-list .vehicle-data span.vehicle-brand,
	div.layout-list .vehicle-data span.vehicle-type {
		display: block;
	}
}

@media(max-width: 370px) {
	.dropdown a {
		font-size: 16px;
	}
}

@media (min-width: 1366px) {
	.header-menu a {
		/*padding:0 18px;*/
		padding: 0 15px;
	}
}

@media (min-width: 1600px) {
	body.main_header .header-menu {
		padding-left: 250px;
	}

	div.header .header-icon-only,
	body.main_header div.header .header-icon-only {
		display:none;
	}

	body.main_header div.header .header-logo {
		left: 135px;
		display: block;
	}

	.header-menu a {
		/*padding:0 35px;*/
		padding: 0 20px;
	}

	.center {
		padding: 0px 160px;
	}

	.anchor-menu {
		left: 160px;
	}

	.anchor-menu+.center {
		padding-left: 400px;
	}

	.center.large {
		padding: 0px 60px;
	}

	.grid-gutter.reset-sides {
		margin: 0 -20px;
		width: calc(100% + 40px);
	}

	.grid-small-gutter.reset-sides {
		margin: 0 -10px;
		width: calc(100% + 20px);
	}

	.slider .video .play span {
		top: 67%;
	}
}

@media (min-width: 1775px) {
	body.main_header .header-menu {
		padding-left: 400px;
	}

	body.main_header div.header .header-logo {
		left: 255px;
	}

	.slider .video .play span {
		top: auto;
		bottom: 10px;
	}
}

@media (min-width: 1920px) {
	.header-menu a {
		/*padding:0 60px;*/
		padding: 0 30px;
	}
}


/* em pure-hidden values */

/* pure-hidden-xs */
@media screen and (max-width:35.438em) {
	.pure-visible-sm {
		display: none
	}

	.pure-visible-md {
		display: none
	}

	.pure-visible-lg {
		display: none
	}

	.pure-visible-xl {
		display: none
	}

	.pure-hidden-xs {
		display: none
	}
}

/* pure-hidden-sm */
@media screen and (min-width:35.5em) and (max-width:47.938em) {
	.pure-visible-xs {
		display: none
	}

	.pure-visible-md {
		display: none
	}

	.pure-visible-lg {
		display: none
	}

	.pure-visible-xl {
		display: none
	}

	.pure-hidden-sm {
		display: none
	}
}

/* pure-hidden-md */
@media screen and (min-width:48em) and (max-width:63.938em) {
	.pure-visible-xs {
		display: none
	}

	.pure-visible-sm {
		display: none
	}

	.pure-visible-lg {
		display: none
	}

	.pure-visible-xl {
		display: none
	}

	.pure-hidden-md {
		display: none
	}
}

/* pure-hidden-lg */
@media screen and (min-width:64em) and (max-width:79.938em) {
	.pure-visible-xs {
		display: none
	}

	.pure-visible-sm {
		display: none
	}

	.pure-visible-md {
		display: none
	}

	.pure-visible-xl {
		display: none
	}

	.pure-hidden-lg {
		display: none
	}
}

/* pure-hidden-xl */
@media screen and (min-width:80em) {
	.pure-visible-xs {
		display: none
	}

	.pure-visible-sm {
		display: none
	}

	.pure-visible-md {
		display: none
	}

	.pure-visible-lg {
		display: none
	}

	.pure-hidden-xl {
		display: none
	}
}


.video-inline {
	position: relative
}

.video-inline--overlap-header {
	top: 5vw;
	margin-top: -16.7vw
}

.video-inline:before {
	content: "";
	display: block;
	padding-top: 56.3%
}

.video-inline:after {
	content: "";
	position: absolute;
	bottom: -25px;
	left: -16px;
	width: 100%;
	height: 50px;
	padding: 0 16px;
	border-radius: 50%;
	background: hsla(0, 0%, 100%, .25)
}

.video-inline__play-toggle {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	transition: .5s
}

.video-inline--ready .video-inline__play-toggle {
	display: block;
	opacity: 1
}

.video-inline--playing .video-inline__play-toggle {
	opacity: 0
}

@media (hover:hover){
	.video-inline--playing.video-inline:hover .video-inline__play-toggle {
		transition: .25s;
		opacity: .75
	}
}

.video-inline__play-toggle__visual {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
	overflow: hidden
}

@media (hover:hover){
	.video-inline__play-toggle:hover .video-inline__play-toggle__visual {
		background: #fafafa
	}
}

.video-inline__play-toggle__visual:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 50%;
	margin-right: -2px;
	height: 18px;
	border-left: 15px solid #FFB81C;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	transform: translateY(-50%);
	transition: .25s
}

.video-inline--playing .video-inline__play-toggle__visual:before {
	margin-right: 4px;
	height: 36px;
	border-top-width: 0;
	border-bottom-width: 0
}

.video-inline__play-toggle__visual:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: 2px;
	height: 0;
	border-left: 15px solid #FFB81C;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	transform: translateY(-50%);
	transition: .25s
}

.video-inline--playing .video-inline__play-toggle__visual:after {
	margin-left: 4px;
	height: 36px;
	border-top-width: 0;
	border-bottom-width: 0
}

.video-inline__progress {
	position: absolute;
	bottom: 32px;
	width: calc(100% - 64px);
	height: 8px;
	left:32px;
	background: #fff;
	background-clip: padding-box;
	box-sizing: border-box;
	opacity: 0;
	pointer-events: none;
	transition: .25s;
	z-index: 4;
	cursor:pointer;
}

@media (hover:hover){
	.video-inline--playing.video-inline:hover .video-inline__progress {
		opacity: .75;
		pointer-events: all
	}

	.video-inline--playing.video-inline:hover .video-inline__progress:hover {
		opacity: 1
	}
}

.video-inline__progress__bar {
	width: 0;
	background: #FFB81C;
	pointer-events: none;
}

.video-inline__image, .video-inline__progress__bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%
}

.video-inline__image {
	width: 100%;
	background: no-repeat 50%;
	background-size: cover;
	border-radius: 12px;
	opacity: 1;
	z-index: 2
}

.video-inline--playing .video-inline__image {
	opacity: 0;
	transition: .5s
}

.video-inline__iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	pointer-events: none;
	z-index: 1
}

.homepagevideo, .homepagevideo .center, .row {
	padding-top: 0;
	margin-top: 0;
}
.content a[href*="binnen"] {
    display: inline-block;
    font-weight: 600;
    height: 36px;
    line-height: 34px;
    padding: 0 19px;
    border: solid 1px #000;
    border-radius: 4px;
    box-sizing: border-box;
    background: #000;
    color: #FFF;
    text-align: center;
    text-decoration: none;
}
.content a[href*="binnen"]:hover {
    background: #F2AE1B;
    border-color: #F2AE1B;
}