.hls-block-video{
	box-sizing: border-box;
	width: 100%;
	position: relative;
	z-index: 10;
}
.hls-block-video video{
	vertical-align: middle;
	width: 100%;
	position: relative;
	z-index: 1;
}
.hls-block-video:not(.is-playing) .js-custom-play .js-play-icon{
	opacity: 1;
	pointer-events: auto;
}
.hls-block-video.is-playing .js-custom-play .js-play-icon,
.hls-block-video .js-custom-play .js-pause-icon{
	display: none;
}
.hls-block-video.is-playing .js-custom-play .js-pause-icon{
	display: block;
	opacity: 1;
}
.hls-block-video.is-playing .js-custom-play .js-play-icon{
	opacity: 0;
	pointer-events: none;
}
.hls-block-video .acf-hls-video__el{
	aspect-ratio: var(--ar_mobile, 16 / 9);
}
.hls-block-video .js-custom-play{
	width: auto;
	height: auto;
}
.hls-block-video .js-custom-play svg,
.hls-block-video .js-custom-play img{
	width: 78px;
	height: 62px;
	margin: 0 auto;
	display: block;
}
.hls-block-video .js-custom-play svg rect{
	transition: all 0.3s ease-out;
}
.hls-block-video .js-custom-play svg:hover rect{
	opacity: 0.5 !important;
}
.acf-hls-btn-title{
	font-size: 15px;
	line-height: 1;
	z-index: 20;
	font-weight: 900;
	display: block;
	color: #fff;
	text-align: center;
	margin-top: 7px;
}
.hls-video-poster{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease-out;
	z-index: 2;
	opacity: 1;
	object-fit: cover;
}
.hls-block-video.has-started .hls-video-poster,
.hls-block-video.is-playing .hls-video-poster{
	opacity: 0;
	pointer-events: none;
}

.hls-block-video:not(.is-playing) .js-custom-play {
	opacity: 1;
	pointer-events: auto;
}
.hls-block-video.is-playing .js-custom-play {
	opacity: 0;
	pointer-events: none;
}

@media only screen and (min-width: 768px){
	.hls-block-video .acf-hls-video__el{
		aspect-ratio: var(--ar_tablet, 16 / 9);
	}
	.hls-block-video .js-custom-play svg,
	.hls-block-video .js-custom-play img{
		width: 120px;
		height: 96px;
	}
	.acf-hls-btn-title{
		margin-top: 10px;
	}
}
@media only screen and (min-width: 1025px) {
	.hls-block-video .acf-hls-video__el{
		aspect-ratio: var(--ar, 16 / 9);
	}
	.hls-block-video .js-custom-play svg,
	.hls-block-video .js-custom-play img{
		width: 150px;
		height: 120px;
	}
	.acf-hls-btn-title{
		margin-top: 20px;
	}
	.hls-block-video.is-playing:hover .js-custom-play .js-play-icon,
	.hls-block-video.is-playing:hover .js-custom-play{
		opacity: 1;
		pointer-events: auto;
	}
}
.fill-hls .hls-block-video{
	height: 100%;
}
.fill-hls .hls-block-video img,
.fill-hls .hls-block-video video {
	object-fit: cover;
	height: 100%;
}