/*
	VideoPlayer.css
	CSS3 styles for managing the VideoPlayer control.

	Copyright (c). 2020 Daniel Patterson, MCSD (danielanywhere)
	Released for public access under the MIT License.
	http://www.opensource.org/licenses/mit-license.php
*/
body
{
	font-family: Calibri, Verdana, Geneva, Tahoma, sans-serif;
	font-size: 12pt;
}

blockquote
{
	background-color: #fdfdef;
	padding: 8px;
}

canvas
{
	border: 2px solid black;
	background-color: cornflowerblue;
}

iframe
{
	border: 0;
	overflow: visible;
	padding: 0;
	margin: 0;
}

video
{
	width: 100% !important;
	height: 100% !important;
	max-height: 56.25vw !important;
}

.overlay-template
{
	border: 2px solid white;
	display: inline-block;
	position: absolute;
}

.overlay1
{
	display: inline-block;
	position: fixed;
}

.overlay1area
{
	display: inline-block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.video-container
{
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.video-container video
{
	min-height: 100%;
	min-width: 100%;

	width: auto;
	height: auto;

	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


