.shinbe-video-wrapper {
	display: block;
	position: relative;
	box-sizing: border-box;
	width: var(--shinbe-width, 100%);
	max-width: var(--shinbe-max-width, 900px);
	margin-top: var(--shinbe-margin-top, 20px);
	margin-bottom: var(--shinbe-margin-bottom, 20px);
	overflow: hidden;
	aspect-ratio: var(--shinbe-aspect-ratio, 16 / 9);
	border-radius: var(--shinbe-radius, 12px);
	background-color: var(--shinbe-background, #000);
	box-shadow: var(
		--shinbe-shadow,
		0 10px 30px rgba(0, 0, 0, 0.18)
	);
	isolation: isolate;
}

.shinbe-video-wrapper,
.shinbe-video-wrapper * {
	box-sizing: border-box;
}

.shinbe-video-wrapper .shinbe-video-player {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0;
	border-radius: inherit;
	background-color: var(--shinbe-background, #000);
	box-shadow: none !important;
	object-fit: var(--shinbe-object-fit, contain);
}

@supports not (aspect-ratio: 16 / 9) {
	.shinbe-video-wrapper {
		height: auto;
	}

	.shinbe-video-wrapper .shinbe-video-player {
		height: auto !important;
	}
}

@media (max-width: 767px) {
	.shinbe-video-wrapper {
		width: 100%;
		max-width: 100%;
	}
}