.modal{
	z-index: 999;
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	background-color: rgba(214,234,242,0.5);
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.modal .modal_overlay{
	position: fixed;
	z-index: 1;
	cursor: pointer;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
}
.modal.open{
	display: flex;
}
.modal .modal_content{
	z-index: 2;
	width: 100%;
	max-width: 1000px;
	height: auto;
	min-height: 320px;
	position: relative;
}

.modal .modal_content video{
	width: 100%;
}

.modal .modal_content .modal_close{
	position: absolute;
	right: -40px;
	top: -40px;
	width: 25px;
	height: 25px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	border :0px;
	background-color: transparent;
	cursor: pointer;
}

.modal .modal_content .modal_close i{
	color:#0f4f89;
	font-size: 20px;
}

@media all and (max-width: 768px) {
	.modal .modal_content{
		padding-left: 15px;
		padding-right: 15px;
	}
	.modal .modal_content .modal_close{
		right: 10px;
	}
}

.fluidMedia {
    position: relative;
    padding-bottom: 56.25%; /* proportion value to aspect ratio 16:9 (9 / 16 = 0.5625 or 56.25%) */
    height: 0;
    overflow: hidden;
}
.fluidMedia-title{
	font-size: 22px;
	font-weight: 300;
	color: white;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);
	z-index: 3;
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	height: 60px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	padding-left: 15px;
	padding-right: 15px;
}
@media all and (max-width: 768px) {
	.fluidMedia-title{
		font-size: 16px;
		height: 40px;
	}
}
.fluidMedia iframe,.fluidMedia video {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
}