/**
 * Created: 		08/01/2025
 * Updated:			08/01/2025
 * Description:		Styles
 * ✅		 		Functions that are working
 * ❌				Functions that are not working
 */

.rsgdx-video-embed {
	position: relative;
	overflow: hidden;
	width: 500px;
	height: 500px;
	border-radius: 20px;
}
.rsgdx-video-embed .rsgdx-video-embed-play-btn {
	position: absolute;
	z-index: 3;
	cursor: pointer;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
}
.rsgdx-video-embed .rsgdx-video-embed-play-btn span.rsgdx-video-embed-play-emoji {
	width: 80px;
	height: 80px;
	font-size: 50px;
	background: #000000;
	border-radius: 100%;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 10px;
	transition: ease .3s;
	border: 2px solid #000000;
}
.rsgdx-video-embed .rsgdx-video-embed-play-btn span.rsgdx-video-embed-play-emoji:hover {
	transition: ease .3s;
	color: #000000;
	background: #ffffff;
	font-size: 30px;
}
.rsgdx-video-embed img.rsgdx-video-embed-thumbnail,
.rsgdx-store.single img.rsgdx-video-embed-thumbnail {
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	object-fit: cover;
}
.rsgdx-video-embed iframe.rsgdx-video-embed-iframe {
	border-radius: 20px;
	z-index: 1;
	position: relative;
}
@media only screen and (max-width: 600px) {
	.rsgdx-video-embed {
		max-width: 100%;
	}
	.rsgdx-video-embed iframe.rsgdx-video-embed-iframe {
		max-width: 100%;
	}
}