﻿	.no-scroll {
		overflow: hidden;
	}
	.videoplayer-mask {
		display:block;
		position: fixed;
		right: 0;
		top: 0;
		bottom: 0;
		left: 0;
		z-index: 1000;
		opacity: .5;
		background: #fff;
	}
	.videoplayer-container {
		display:block;
		position:fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1000;
		overflow: auto;
		-webkit-user-select:none;
		   -moz-user-select:none;
				user-select:none;
	}
	.videoplayer-panel {
		position: static;
		display: inline-block;
		border: 2px solid #000;
		border-radius: 4px;
		background: #fff;
		z-index:1000;
		box-sizing: border-box;
		margin: .5em;
		max-width:100%;
	}
	.videoplayer-container > .videoplayer-panel {
		-webkit-box-shadow: 0 24px 38px 3px rgba(0,0,0,0.14), 0 9px 46px 8px rgba(0,0,0,0.12), 0 11px 15px -7px rgba(0,0,0,0.2);
		   -moz-box-shadow: 0 24px 38px 3px rgba(0,0,0,0.14), 0 9px 46px 8px rgba(0,0,0,0.12), 0 11px 15px -7px rgba(0,0,0,0.2);
				box-shadow: 0 24px 38px 3px rgba(0,0,0,0.14), 0 9px 46px 8px rgba(0,0,0,0.12), 0 11px 15px -7px rgba(0,0,0,0.2);
	}
	.videoplayer-panel .videoplayer-header {
		color: #fff;
		background: #000;
		margin: -2px -2px 0px -2px; /* pull up and to the sides */
		padding: .4em .5em .4em .5em;
		line-height:1.5em;
		min-height: 1.5em;
		white-space:nowrap;
		overflow: hidden;
		text-overflow:ellipsis;
		border-top-left-radius: inherit;
		border-top-right-radius:inherit;
	}
	.videoplayer-panel .videoplayer-header .videoplayer-hd-text {
		display: inline-block;
		float:left;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		max-width: calc(100% - 2em);
	}
	.videoplayer-panel .videoplayer-header .videoplayer-hd-close {
		display: inline-block;
		float:right;
		cursor: pointer;
		font-size: 2em;
		font-weight: bold;
	}
		.videoplayer-panel .videoplayer-header .videoplayer-hd-close::before {
			content: "\00D7";
		}
		.videoplayer-panel .videoplayer-header .videoplayer-hd-close.hidden {
			display: none;
		}

	.videoplayer-panel > .video-player {
		width: 100%;
	}
	.videoplayer-panel .video-player > video {
		display:block;
		width: 100%;
	}
	.videoplayer-panel .video-player > video:focus {
		outline: none;
	}
