#modal {
	left:10%;
	opacity: 1;
	position:fixed;
	height: 80%;
	margin:5% 0 0 0;
	top:0%;
	display: none;
	width:80%;
	box-shadow:0 3px 7px rgba(0,0,0,.25);
	box-sizing:border-box;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	z-index: 999999;
}
/* Make the modal appear when targeted */

#modal .header,#modal .footer {
	border-bottom: 1px solid #e7e7e7;
	border-radius: 5px 5px 0 0;
	display: flex;
}
#modal .header .titulo{
	font: 400 1.3em 'Open Sans', sans-serif;
  padding: 1%;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  width: 95%
}
#modal .header #cerrar{
	padding: 2%;
	border-left-style: solid;
	border-left-color: gray;
	border-left-width: 1px;
	width: 5%;
  text-align: center;
  font-size: 1.8em;
  text-decoration: none;
  color: gray;
  background-image: url(close.png);
  background-repeat: no-repeat;
  background-position: center;
}
#modal .header #imprimir{
	padding: 2%;
	border-left-style: solid;
	border-left-color: gray;
	border-left-width: 1px;
	width: 5%;
  text-align: center;
  font-size: 1.8em;
  text-decoration: none;
  color: gray;
  background-image: url(print.png);
  background-repeat: no-repeat;
  background-position: center;
}
#modal .header #cerrar a{
	text-decoration: none;
	color: gray;
	width: 100%;
	height: 100%;
	text-align: center;

}
#modal .copy {
	padding: 2%;
	background: #fff;
	flex: 1;
}
#modal .footer {
	padding: 2%;
	border:none;
	border-top: 1px solid #e7e7e7;
	border-radius: 0 0 5px 5px;
	font: 400 0.95em 'Open Sans', sans-serif;
}
#modal h2 {
	margin:0;
}
#modal .btn {
	float:right;
}
#modal .copy iframe{
	height: 100%;
	width: 100%;
}
.modal-content {
	background: #f7f7f7;
	position: relative;
	z-index: 20;
	border-radius:5px;
	height: 100%
}
#modal #overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  background-color: rgba(0,0,0,0.5);
}
