.webvio-vw-wrap {
	--webvio-vw-zoom: 1;
	position: relative;
	width: 100%;
	height: 520px;
	overflow: hidden;
	background: #000;
}

.webvio-vw-player,
.webvio-vw-player iframe {
	width: 100%;
	height: 100%;
	border: 0;
	transform: scale(var(--webvio-vw-zoom));
	transform-origin: center center;
}
.webvio-vw-player iframe {
	pointer-events: none;
	transform: scale(var(--webvio-vw-zoom));
	transform-origin: center center;
}
.webvio-vw-wrap.is-fullscreen .webvio-vw-player iframe,
.webvio-vw-wrap.is-fullscreen .webvio-vw-player {
	transform: none !important;
	zoom: 1 !important;
}

.webvio-vw-interaction-layer {
	position: absolute;
	inset: 0;
	z-index: 3;
	background: transparent;
	cursor: default;
}

.webvio-vw-controls {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 5;
	display: flex;
	gap: 12px;
	width: auto;
	justify-content: space-between;
	align-items: center;
}

.webvio-vw-control-btn {
	appearance: none;
	border: 0;
	background: transparent !important;
	color: #fff;
	width: auto;
	height: auto;
	min-width: 0;
	min-height: 0;
	padding: 0;
	margin: 0;
	float: none;
	position: relative;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	cursor: pointer;
	box-shadow: none;
	backdrop-filter: none;
}

.webvio-vw-control-btn img {
	width: 20px;
	height: 20px;
	display: block;
	object-fit: contain;
}
.webvio-vw-control-btn i {
	font-size: 20px;
	line-height: 1;
}
.webvio-vw-control-btn svg {
	width: 20px;
	height: 20px;
	display: block;
}

.webvio-vw-icon {
	display: none;
	color: inherit;
}
.webvio-vw-icon i,
.webvio-vw-icon svg {
	color: inherit;
	fill: currentColor;
	stroke: currentColor;
}

.webvio-vw-wrap.is-playing .webvio-vw-icon-pause,
.webvio-vw-wrap:not(.is-playing) .webvio-vw-icon-play,
.webvio-vw-wrap.is-muted .webvio-vw-icon-mute,
.webvio-vw-wrap:not(.is-muted) .webvio-vw-icon-unmute {
	display: inline-flex;
}

.webvio-vw-cursor-fullscreen {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0.92);
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 6;
	pointer-events: none;
	appearance: none;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
}
.webvio-vw-cursor-fullscreen.is-fixed-cursor {
	position: fixed;
}

.webvio-vw-cursor-fullscreen.is-visible {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.webvio-vw-cursor-fullscreen img {
	width: 52px;
	height: 52px;
	object-fit: contain;
	display: block;
}
.webvio-vw-cursor-fullscreen i {
	font-size: 52px;
	line-height: 1;
}
.webvio-vw-cursor-fullscreen svg {
	width: 52px;
	height: 52px;
	display: block;
}

.webvio-vw-empty {
	padding: 12px;
	background: #111;
	color: #fff;
	font-size: 13px;
}
