@charset "utf-8";
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: visible;
    opacity: 1;
	z-index: 9999;
}
.overlay:target {
    visibility: visible;
    opacity: 1;
}
#popup:target{
  visibility: hidden; /* Se regresa a hidden para ocultar */
  opacity: 0; /* Se regresa a o para hacerlo "invisible" */
	    transition: all 1s ease-in-out;
}
/* SmartPhone */
@media screen and (max-width: 640px) {
#popupBody{
    width: 96%;
    padding: 2%;
    border-radius: 15px;
    box-shadow: 0 0 5px #CCC;
    background: #FFF;
    position: relative;
    transition: all 1s ease-in-out;
    margin: 5% auto;    
}
#cerrar{
    position: absolute;
    top: 3pt;
    right: 12pt;
    transition: all 200ms;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;	
}
}

/* Tablet */
@media screen and (min-width:641px) and (max-width: 800px) {
#popupBody{
    width: 86%;
    padding: 2%;
    border-radius: 15px;
    box-shadow: 0 0 5px #CCC;
    background: #FFF;
    position: relative;
    transition: all 1s ease-in-out;
    margin: 5% auto;    
}
#cerrar{
    position: absolute;
    top: 12pt;
    right: 24pt;
    transition: all 200ms;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;	
}	
}

@media screen and (min-width:801px) {
#popupBody{
    width: 46%;
    padding: 2%;
    border-radius: 15px;
    box-shadow: 0 0 5px #CCC;
    background: #FFF;
    position: relative;
    transition: all 1s ease-in-out;
    margin: 10% auto;    
}
#cerrar{
    position: absolute;
    top: 15pt;
    right: 32pt;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
	font-size:40px;
}
}

#cerrar2{
    transition: all 200ms;
}
