/**
 * WP MyLinks — YouTube Lite Embed Styles
 *
 * Lightweight, click-to-load YouTube embeds.
 * Original concept by @labnol — https://www.labnol.org/
 *
 * @package Wp_Mylinks
 * @since   1.0.0
 */

.youtube-embed,
.media-embed-wrapper {
	margin-left: 25px;
	margin-right: 25px;
}

.youtube-player {
	position: relative;
	max-width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	background: transparent;
}

.youtube-player iframe {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: transparent;
}

.youtube-player img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: auto;
	border: none;
	object-fit: cover;
	cursor: pointer;
	transition: 0.4s all;
}

.youtube-player img:hover {
	-webkit-filter: brightness(75%);
	filter: brightness(75%);
}

.youtube-player .play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 72px;
	height: 72px;
	margin-top: -36px;
	margin-left: -36px;
	cursor: pointer;
}
