.acv-video{
	width:100%;
	max-width:var(--acv-max-width,1280px);
	margin-top:1.5rem;
	margin-bottom:1.5rem;
}

.acv-align-center{
	margin-left:auto;
	margin-right:auto;
}

.acv-align-left{
	margin-left:0;
	margin-right:auto;
}

.acv-align-right{
	margin-left:auto;
	margin-right:0;
}

.acv-align-wide{
	max-width:min(var(--acv-max-width,1280px),100%);
}

.acv-align-full{
	max-width:100%;
}

.acv-video-inner{
	position:relative;
	width:100%;
	aspect-ratio:var(--acv-ratio,16/9);
	background:#000;
	overflow:hidden;
}

.acv-video-frame,
.acv-html5-video,
.acv-youtube-placeholder{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	border:0;
	display:block;
}

.acv-html5-video{
	object-fit:cover;
	background:#000;
}

.acv-youtube-placeholder{
	padding:0;
	cursor:pointer;
	background:#000;
	color:#fff;
}

.acv-youtube-placeholder img{
	width:100%;
	height:100%;
	display:block;
	object-fit:cover;
	opacity:.92;
	transition:opacity .2s ease,transform .2s ease;
}

.acv-youtube-placeholder:hover img,
.acv-youtube-placeholder:focus-visible img{
	opacity:1;
	transform:scale(1.015);
}

.acv-play-button{
	position:absolute;
	left:50%;
	top:50%;
	width:72px;
	height:72px;
	transform:translate(-50%,-50%);
	border-radius:50%;
	background:#DF453E;
	box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.acv-play-button::before{
	content:"";
	position:absolute;
	left:29px;
	top:22px;
	width:0;
	height:0;
	border-top:14px solid transparent;
	border-bottom:14px solid transparent;
	border-left:20px solid #fff;
}

.acv-youtube-placeholder:hover .acv-play-button,
.acv-youtube-placeholder:focus-visible .acv-play-button{
	background:#B62D25;
}

@media screen and (max-width:480px){
	.acv-play-button{
		width:56px;
		height:56px;
	}

	.acv-play-button::before{
		left:23px;
		top:17px;
		border-top-width:11px;
		border-bottom-width:11px;
		border-left-width:17px;
	}
}

.acv-youtube-fallback{
	margin:.5rem 0 0;
	font-size:14px;
	line-height:1.4;
	text-align:center;
}

.acv-youtube-fallback a{
	text-decoration:underline;
	text-underline-offset:.2em;
}
