.flash-video-embed {
	position: relative;
	width: 100%;
	height: 100%;
	background: #000;
}

.flash-video-embed iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.flash-video-embed__play {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease;
}

.flash-video-embed__play:hover,
.flash-video-embed__play:focus-visible {
	background: rgba(0, 0, 0, 0.6);
}

.flash-video-embed__play .material-icons {
	font-size: 4rem;
	line-height: 1;
}

.flash-video-embed--active .flash-video-embed__play {
	display: none;
}

.flash-video-embed--pending iframe {
	visibility: hidden;
}

.flash-video-embed--active iframe {
	visibility: visible;
}
