section.activeCar {
	position: fixed;
	top: 0;
	transition: top 0.3s ease-out;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100vh;
	overflow-y: auto;
	background-color: rgba(0, 0, 0, 0.7);
}

article.activeCar div.placeholder {
	position: relative;
	background-color: rgba(255, 255, 255, 0.5);
}
section.activeCar > article > .placeholder img {

	object-fit: cover;
    height: 72vw;
    max-height: 62vh;
}
section.activeCar > article > .placeholder img.hasGallery {
	cursor: pointer;
}
section.activeCar > article > .placeholder .galleryicon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 42px;
	height: 32px;
	background-image: url(/images/icon_carphotos.svg);
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
}

article.activeCar {
	max-width: 1300px;
	background-color: #fff;
	width: 100%;
	margin: 0 auto;
	min-height: 100%;
	overflow: hidden;
}

article.activeCar .info {
	padding: 20px;
	font-size: 16px;
}

article.activeCar .info .title {
	font-size: 26px;
	padding-bottom: 15px;
}

article.activeCar .info .price {
	text-align: right;
}

article.activeCar .info p > b {
	min-width: 100px;
	display: inline-block;
}

article.activeCar .showMore {
    text-align: center;
    padding: 8px 30px;
    background-color: #000000;
    color: #fff;
    border-radius: 4px;
    margin: 20px;
    /* position: absolute; */
    cursor: pointer;
    float: right;
    clear: both;
}

article.activeCar .info.A .text {
	white-space: pre-wrap;
	padding: 20px 0;
	font-size: 16px;
}
article.activeCar .info.B .text {
	white-space: pre-wrap;
	font-size: 16px;
}

article.activeCar .contact {
	background-color: #e1e1e1;
	color: #000;
	position: relative;
	height: 33px;
	width: 100%;
	padding: 5px 15px;
}

article.activeCar .contact > .logo {
	float: left;
	height: 23px;
	position: relative;
	width: 140px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
}

article.activeCar .contact > .logo > p {
	line-height: 23px;
	font-size: 19px;
	font-weight: bold;
}

article.activeCar .contact > .phone {
	float: right;
	line-height: 23px;
	font-weight: bold;
}
article.activeCar .showDesktop {
	display: none;
}
@media (min-width: 600px) {
	article.activeCar {
		width: 90%;
		min-height: initial;
	}
	section.activeCar > article > .placeholder img {

		object-fit: cover;
		height: 50vw;
	}
}
@media (min-width: 900px) {
	article.activeCar .showDesktop {
		display: block;
	}
	article.activeCar .showMobile {
		display: none;
	}
	article.activeCar .info.title .title {
		font-size: 34px;
		float: left;
	}
	article.activeCar .info.title .price {
		font-size: 34px;
		float: right;
	}
	article.activeCar .info.A {
		float: left;
		width: 40%;
	}
	article.activeCar .info.B {
		float: right;
		width: calc(60% - 20px);
	}
	article.activeCar .info.A,
	article.activeCar .info.B {
		padding-top: 0;
	}
}
