.wvp-video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: stretch;
	justify-content: center;
	background-color: black;
	overflow: hidden;
}

.wvp-video-player {
	display: block;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.wvp-video-player:focus {
	outline: none;
}

.wvp-play-button {
	border: none;
	background-color: rgba(64, 64, 64, 0.6);
	box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 48px;
	justify-content: center;
	margin-top: -24px;
	transition: opacity 400ms ease-in-out;
	position: absolute;
	text-align: center;
	text-decoration: none;
	top: 50%;
	width: 2.6rem;
	cursor: pointer;
}

.wvp-play-button:focus {
	outline: none;
}

.wvp-button {
	position: absolute;
	top: 18px;
	right: 18px;
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.75);
	cursor: pointer;
	text-shadow: 1px 1px darkgray;
}

.wvp-fullscreen-button {
	top: 18px;
}

.wvp-fullscreen-button:focus {
	outline: none;
}

.wvp-mute-button {
	top: 48px;
}

.wvp-mute-button:focus {
	outline: none;
}

.wvp-video-progress {
	position: absolute;
	display: flex;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: rgba(0, 0, 0, 0.6);
	cursor: pointer;
}

.wvp-video-progress-filled {
	width: 0;
	background-color: darkgrey;
}
