html {
    height: 100%;
}

body {
    height: 100%;
}

@media (min-width: 600px) {
	.show-on-mobile {
		display: none;
	}
}


@media (max-width: 600px) {
	.show-on-desktop {
		display: none;
	}
}

.mobile-listing {
	flex: auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	width: 100%;
	margin-top: 20px;
}

.vehica-featured-v1__vehicle {
	width: 100%;
	padding-left: 11px;
	padding-right: 11px;
	margin-bottom: 18px;
}
.vehica-car-card {
	border-radius: 10px;
	position: relative;
	opacity: 1;
	visibility: visible;
	height: 100%;
}
.vehica-car-card__inner {
	overflow: hidden;
	position: relative;
	width: 100%;
	background: #222732;
	border-radius: 10px;
	visibility: visible;
	height: 100%;
}
.vehica-car-card-link {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}
.vehica-car-card__image-bg {
	background: #eff0f1;
	position: relative;
}
.vehica-car-card__content {
	padding: 0 22px 10px 22px;
}
.vehica-car-card__name {
	display: block;
	text-align: left;
	font-size: 17px;
	line-height: 21px;
	margin-top: 11px;
	margin-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: inherit;
	color: #fff;
}
