.video-embed {
	position: relative;
	margin-bottom: 50px;
}
	.video-embed a.play-button {
		display: block;
		width: 100%;
		position: relative;
	}
		.video-embed a.play-button::after {
			display: inline-block;
			width: 75px;
			height: 75px;
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%, -50%);
			content: '';
			background-image: url('/includes/public/assets/images/common/play_button.png');
			background-repeat: no-repeat;
			background-position: center;
			background-size: cover;
			transition: opacity 0.5s ease;
		}
			.video-embed a.play-button:hover::after {
				transition: opacity 0.5s ease;
				opacity: 0.8;
			}

@media only screen and (min-width: 40.063em) {
	.video-embed a.play-button::after {
		width: 126px;
		height: 126px;
	}
}
