.mariart-video-container {
	display: block;
	position: relative;
}




/*  **********  Overlay  **********  */

.mariart-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: transparent;
}
.mariart-video-overlay .background,
.mariart-video-overlay .opacity {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.mariart-video-overlay .background {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.mariart-video-overlay .opacity {
	background-color: #000000;
	opacity: 0.20;
}
.mariart-video-overlay .play-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #FFFFFF;
	position: relative;
	display: block;
	align-items: center;
	justify-content: center;
	opacity: 0.8;
}
.mariart-video-overlay .play-icon::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 15px);
	left: calc(50% - 10px);
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 25px solid green;
	opacity: 1;
}

.mariart-video-overlay:hover .opacity {
	opacity: 0.1;
}
.mariart-video-overlay:hover .play-icon {
	opacity: 1;
}
.mariart-video-overlay:hover .play-icon::after {
	opacity: 1;
}




/*  **********  Video  **********  */

.mariart-video-video {
	position: relative;
	z-index: 0;
}




/*  **********  Embed Responsively  **********  */

.mariart-video-video .embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
.mariart-video-video .embed-container iframe,
.mariart-video-video .embed-container object,
.mariart-video-video .embed-container embed {
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 100%;
}




/*  *********  YouTube  **********  */

.youtube-container {
	margin-top: 20px;
	max-width: 1080px;
	margin: 0 auto;
}
.youtube-player {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	max-width: 100%;
}
.youtube-player iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: transparent;
}



/*  **********  4:3  **********  */

.mariart-video-container.ratio-fourthree .mariart-video-video .embed-container,
.mariart-video-container.ratio-fourthree .youtube-player {
	padding-bottom: 75%;
}



/*  **********  Square  **********  */

.mariart-video-container.ratio-square .mariart-video-video .embed-container,
.mariart-video-container.ratio-square .youtube-player {
	padding-bottom: 100%;
}