.mqg-reel-video-wrapper {
	position: relative;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	cursor: pointer;
	aspect-ratio: 9 / 16;
}
.mqg-reel-video-wrapper .mqg-reel-thumbnail {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 20px;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.mqg-reel-video-wrapper .mqg-reel-preview-video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	border-radius: 20px;
}
.mqg-reel-video-modal {
	display: none !important;
	position: fixed !important;
	z-index: 99999 !important;
	left: 0 !important;
	top: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	background-color: rgba(0, 0, 0, 0.9) !important;
	justify-content: center !important;
	align-items: center !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
}
.mqg-reel-video-modal.active {
	display: flex !important;
}
.mqg-reel-video-modal-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	width: auto;
	height: auto;
}
.mqg-reel-video-modal video {
	width: 100%;
	height: auto;
	max-height: 90vh;
	aspect-ratio: 9 / 21;
	object-fit: contain;
}
.mqg-reel-video-modal-close {
	position: absolute;
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	line-height: 1;
}
.mqg-reel-video-modal-close:hover {
	color: #ccc;
}
@media (max-width: 768px) {
	.mqg-reel-video-wrapper {
		max-width: 100%;
	}
}

