.webvue-wv-playing {
	overflow: hidden;
}

.webvue-wv-player {
	position: absolute;
	inset: 0;
	z-index: 45;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 220px;
	background: #000;
}

.webvue-wv-player video,
.webvue-wv-player iframe {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	border: 0;
	background: #000;
	object-fit: contain;
}

.webvue-wv-player__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, .65);
	color: #fff;
	font: 400 26px/1 Arial, sans-serif;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.webvue-wv-player__close:hover,
.webvue-wv-player__close:focus {
	background: rgba(0, 0, 0, .85);
	color: #fff;
	outline: 2px solid rgba(255, 255, 255, .8);
	outline-offset: 2px;
}

@media (max-width: 767px) {
	.webvue-wv-player {
		min-height: 180px;
	}

	.webvue-wv-player__close {
		top: 8px;
		right: 8px;
		width: 34px;
		height: 34px;
	}
}
