.overlay{
	position: fixed;
	left:0px;
	top:0px;
	background-color: rgba(0, 0, 0, 0.8);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;

}

.overlay .popup{
    position: relative;
    overflow: hidden;
    height: 80%;
    padding-bottom: 10%;
}

.overlay .popup .image_container{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(0,0,0,.1);
    height: 100%;
    width: 100%;
}

.overlay .popup .image_container video{
    position: absolute;
    top:50%; left:50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    border: 3px solid #fff;
}

.btnClose{
	float: right;
	display: block;
	margin: 0 0 20px auto;
	background: transparent;
	font-size: 15px;
	border-radius: 100%;
	width: 30px;
	height: 30px;
	border: none;
	outline: none;
	background: #00338D;
	color: white;
	cursor: pointer;
}
