@charset "UTF-8";
/* CSS Document */

.overlay-popup { 
  z-index: 9999;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: visible;
  opacity: 1;
}

#popup:target{
  visibility: hidden; /* Se regresa a hidden para ocultar */
  opacity: 0; /* Se regresa a o para hacerlo "invisible" */
}


#popupBody{
	width: 25%;
	align-items: center;
	border-radius: 15px;
	box-shadow: 0 0 5px #CCC;
	background: #FFF;
	position: relative;
	margin: 5% auto;
}

#cerrar{
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 50px;
	fotn-weight: 600;
	text-decoration: none;
	color: #F00;
}

@media only screen and (max-width: 760px){
	#popupBody{
	width: 80%;
	align-items: center;
	border-radius: 15px;
	box-shadow: 0 0 5px #CCC;
	background: #FFF;
	position: relative;
	margin: 5% auto;
}
}

