.modal-content {
  max-width: 500px;
  margin: 0px auto;
  position: relative;
  z-index: 192;
  border-radius: 5px;
  
  height: auto;
  background-color: #fff;
}

/* LLAMADA POPUP 1 */
/* Normal styles for the modal */
#modal {
	left:50%;
	margin:-250px 0 0 -40%;
	opacity: 0;
	position:absolute;
	top:-50%;
	visibility: hidden;
	width:80%;
	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: 889;
}
	
/* Make the modal appear when targeted */
#modal:target {
		opacity: 1;
          top: 35%;
		visibility: visible;
}

#modal .overlay {
	background-color: #000;
	background: rgba(0,0,0,.8);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

@media screen and (max-width: 980px){
    

#modal {
	width: 90%;
}

}

