#video_screen {
	position: fixed;
	top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	z-index: -10;
	opacity: 0;
    text-align: center;
    white-space: nowrap;
    outline: none;
    visibility: hidden;
	background: rgba(0,0,0,0.9);
	transition: opacity .3s ease;
}
#video_screen.open {
	opacity: 1;
    visibility: visible;
	z-index: 9999;
}
#video_screen .back {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
    width: 100%;
    height: 100%;
}
#video_screen:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}
.video_container {
    width: 100%;
    max-width: 960px;
    /* max-width: 1920px; */
    max-height: 100%;
    z-index: 9992;
    position: relative;
    vertical-align: middle;
    display: inline-block;
    white-space: normal;
    outline: none;
}
.video_content{
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}
#video_screen .back button {
	position: absolute;
    z-index: 9994;
	top: 0;
	right: 0;
	padding: 8px;
	line-height: 0;
 	margin: 12px; 
 	background: rgba(0,0,0,.85);
 	opacity: .75; 
	border-radius: 100%; 
	cursor: pointer;
    outline: 0;
    border: 2px solid rgba(255,255,255,.2);
    transition: background .3s ease;
}
#video_screen .back button:hover {
    background: rgba(64,64,64,.85);
}
#video_screen .back button svg {
    width: 16px;
    height: 16px;
    padding: 8px;
}
.plyr {
	position: absolute;
    top: 0;
    left: 0;
	width: 100%;
    height: 100%;
    transition: transform .3s ease, opacity .3s ease;
    /* overflow: visible; */
}