/* Videoblock der Fahrzeugdetailseite */

.ecarus-video {
	margin: 40px 0;
}
.ecarus-video h2 {
	margin-bottom: 15px;
}
.ecarus-video-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #1e1e1e;
	border-bottom-right-radius: 20px;
}
.ecarus-video-frame iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.ecarus-video-start {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: 0;
	background: none;
	cursor: pointer;
	display: block;
}
.ecarus-video-poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ecarus-video-play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 80px;
	height: 56px;
	margin: -28px 0 0 -40px;
	border-radius: 14px;
	background: rgba(0,0,0,0.75);
	transition: background 0.2s ease;
}
.ecarus-video-play:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -11px 0 0 -8px;
	border-style: solid;
	border-width: 11px 0 11px 19px;
	border-color: transparent transparent transparent #fff;
}
.ecarus-video-start:hover .ecarus-video-play,
.ecarus-video-start:focus .ecarus-video-play {
	background: #e2001b;
}
.ecarus-video-note {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	margin: 0;
	padding: 8px 12px;
	box-sizing: border-box;
	font-size: 13px;
	line-height: 18px;
	color: #fff;
	background: rgba(0,0,0,0.55);
}
.ecarus-video-frame.playing .ecarus-video-note {
	display: none;
}
