/* VIDEO BLOCK CSS IN SECOND PART OF CSS FILE */


/* START INFO BLOCK CSS */

/* body {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 20px;
} */

.modal_info {
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgba(0,0,0,0.5); /* Gray background when infoblock is open. Hide if not neccessary 
	;*/
	visibility: hidden;
}

.modal {
	background-color: #FFF;
	width: 50%; /* Use this to set the witdh of the info/video block in screen witdh values *//* border-radius: 10px;  Match these values with borders of header & footer */
	margin: 10% auto; /* margin from top */
	position: relative;
}

.modal_header {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color:#FFF;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 40px;
  background-color: #5b92d3;
/*   border-top-left-radius: 10px; Match these values with borders of style_infoblock */
/*   border-top-right-radius: 10px; Match these values with borders of style_infoblock */
}

.modal_close {
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
	color: #FFF;
	float: right;
	font-size: 40px;
	position: absolute;
	top: 10px;
	right: 20px;
}

.modal_close:hover,.modal_close:focus {
	font-size: 45px;
	font-weight: bold;
	margin-top: -5px;
#        margin-right: -5px;
	cursor: pointer;
}

.modal_i_p {
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	color:#5b92d3;
	padding: 20px 30px 0px 80px;
}

.modal_p {
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	color:#5b92d3;
	padding: 20px 30px 0px 20px;
}

p {
	display: block;
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
	color: #000;
	padding: 20px;
	margin: 1px;
}

.modal_footer {
	height: 60px;
	background-color: #5b92d3;
}

.footer_logo {
	background-image: url("../media/footer_logo.png");
	background-repeat: no-repeat;
	width: 100px;
	height: 60px;
	position: right;
#	padding-top: 10px;
#	padding-right: 20px;
	position: absolute;
	right: 20px;
}

/* START VIDEO BLOCK CSS BELOW */

.modal_video {
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgba(0,0,0,0.5); /* Gray background when infoblock is open. Hide if not neccessary */
	visibility: hidden;
}

.iframe_vid{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
}

.iframe_vid iframe{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}