.hover:hover{

	cursor: pointer;

}

.spacer{

	height: 30px;

}

.vs-title-h2{

	font-size: 30px !important;

}


/* // Vehiclesearch switchs // */

label.vs-switch-wrapper {
	display: table;
	position: relative;
}

label.vs-switch-wrapper:after {
	content: '';
	display: table;
	clear: both;
}

label.vs-switch-wrapper > * {
	display: table-cell;
	vertical-align: middle;
}

label.vs-switch-wrapper > input[type="checkbox"] {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	opacity: 0;
}

label.vs-switch-wrapper > .vs-switch-container-wrapper { padding: 5px 3px 5px 0; }
label.vs-switch-wrapper > .vs-switch-label-text-wrapper { padding: 5px 0 5px 3px; }

label.vs-switch-wrapper > .vs-switch-container-wrapper > span.vs-switch-container {
	display: block;
	position: relative;
	width: 30px;
	height: 15px;
	border-radius: 15px;
	cursor: pointer;
}

label.vs-switch-wrapper > .vs-switch-container-wrapper > span.vs-switch-container > span.vs-switch {
	display: block;
	position: absolute;
	top: 50%;
	height: 11px;
	width: 11px;
	background: #000;
	border-radius: 50%;
	transform: translateY(-50%);
	transition: left .1s linear;
}

label.vs-switch-wrapper > input[type="checkbox"]:not(:checked) ~ .vs-switch-container-wrapper > span.vs-switch-container {
	border: 1px solid #ccc;
}

label.vs-switch-wrapper > input[type="checkbox"]:not(:checked) ~ .vs-switch-container-wrapper > span.vs-switch-container > span.vs-switch {
	left: 2px;
}

label.vs-switch-wrapper > input[type="checkbox"]:checked ~ .vs-switch-container-wrapper > span.vs-switch-container {
	border: 1px solid #007cba;
}

label.vs-switch-wrapper > input[type="checkbox"]:checked ~ .vs-switch-container-wrapper > span.vs-switch-container > span.vs-switch {
	left: calc(100% - 13px);
	background: #007cba;
}

/* // Vehiclesearch selects end // */


/* // Vehiclesearch selects // */
@media only screen and (min-width: 995px){

	select.vehiclesearch-select {
		display: block !important;
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 0 !important;
		height: 0 !important;
		min-height: 0 !important;
		min-width: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		border: none !important;
		opacity: 0 !important;
	}

	.vehiclesearch-custom-select-wrapper {
		display: block;
		position: relative;
		padding: 14px 35px 14px 10px;
		margin: 0 0 10px;
		width: 100%;
		border: 1px solid #949EA7;
		background: #fff;

		cursor: pointer;
	}

	.vehiclesearch-custom-select-wrapper::after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: 15px;
		width: 10px;
		height: 10px;
		border-right: 1px solid #999;
		border-bottom: 1px solid #999;

		transition: transform .1s ease-in-out;
	}

	.vehiclesearch-custom-select-wrapper:not(.selecting)::after {
		transform: translateY(-75%) rotate(45deg);
	}

	.vehiclesearch-custom-select-wrapper.selecting::after {
		transform: translateY(-25%) rotate(225deg);
	}

	.vehiclesearch-custom-select-wrapper .vehiclesearch-custom-select-current-selected-value {
		display: block;
		width: 100%;
		line-height: 1em;
		color: #555;

		-ms-user-select: none;
		-moz-user-select: none;
		-webkit-user-select: none;
		user-select: none;
	}

	ul.vehiclesearch-custom-select-container {
		display: none;
		position: absolute;
		width: 100%;
		margin: 0;
		padding: 0;
		background: #fff;
		border: 1px solid #ccc;
		list-style-type: none;
		opacity: 0;
		z-index: 100;
		cursor: pointer;

		-webkit-box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.75);
		-moz-box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.75);
		box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.75);

		transition: all .2s ease-in-out;
	}

	ul.vehiclesearch-custom-select-container li.vehiclesearch-custom-select-option-group {
		font-weight: 800;
	}

	ul.vehiclesearch-custom-select-container li.vehiclesearch-custom-select-option-group,
	ul.vehiclesearch-custom-select-container li.vehiclesearch-custom-select-option {
		display: block;
		width: 100%;
		padding: 10px;
		line-height: 1.2em;

		-ms-user-select: none;
		-moz-user-select: none;
		-webkit-user-select: none;
		user-select: none;
	}

	ul.vehiclesearch-custom-select-container li.vehiclesearch-custom-select-option.vehiclesearch-custom-select-option-group-item {
		padding-left: 20px;
	}

	ul.vehiclesearch-custom-select-container li.vehiclesearch-custom-select-option.vehiclesearch-custom-select-option-group-item:before {
		content:'- ';
	}

	ul.vehiclesearch-custom-select-container li.vehiclesearch-custom-select-option:hover,
	ul.vehiclesearch-custom-select-container li.vehiclesearch-custom-select-option[data-selected="true"] {
		background: #11304C;
		color: #fff;
	}

	.vehiclesearch-custom-select-wrapper[data-disabled="true"] {
		opacity: .5;
	}

}
/* // Vehiclesearch selects end // */