/*Ventana emergente*/
div#fondoCapaModal {
	background: none repeat scroll 0 0 #000000;
    display: none;
    height: 100% !important;
    opacity: 0.60;
    filter: alpha(opacity=60);
    position: fixed;
    width: 100%;
    z-index: 2000;
    left: 0;
    top: 0;
}
div#ventanaModal {
    top: 50%;
    left: 50%;
    position: fixed;
    width: 30em;
    max-width: 30em;
    z-index: 2050;
    float: none;  
    -webkit-transform: translate(0%, -50%);  
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
div#ventanaModal.ventanaModalNewsletter{
	width: 40rem !important;
    max-width: 40rem !important;
}
div#ventanaModal div#contenedorVentanaModal {
    right: 50%;
    position: relative;
    background-color: white;
     display: table;
    width: 100%;
}

div#ventanaModal div#contenedorVentanaModal.ventana-newsletter{
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
div#ventanaModal div#contenedorVentanaModal #dialog{
	width: 27em;
    border-right: 1px solid #F0F0F0;
    display: table-cell;
    padding: 2em;
}    
div#ventanaModal div#contenedorVentanaModal.ventana-newsletter #dialog{
	border-right: 0;
    padding-bottom: 16px;
    padding-left: 0;
    padding-top: 0;
    padding-right:0;
    width: 32rem;
}
div#ventanaModal div#contenedorVentanaModal .contenedorCerrar {
    display: table-cell;
    vertical-align: middle;
    width: 3em;
    text-align: center;
}
div#ventanaModal div#contenedorVentanaModal.ventana-newsletter .contenedorCerrar{
	align-self:flex-end;
	margin-right:1rem;
	padding-top:1rem;
}
div#ventanaModal div#contenedorVentanaModal.ventana-newsletter .contenedorCerrar span:first-child{
	display:inline-block;
}
div#ventanaModal div#contenedorVentanaModal.ventana-newsletter .contenedorCerrar span:first-child a{
	display: flex;
    align-items: center;
    height: 100%;
}

div#ventanaModal div#contenedorVentanaModal .contenedorCerrar span:first-child {
	display: block;
    margin-bottom: 0.75em;
}
div#ventanaModal div#contenedorVentanaModal .tituloAviso {
	color: #0D7CBF;
   	font-size: 1.7em;
   	font-family: IberPangeaText Light, sans-serif;
}

div#ventanaModal div#contenedorVentanaModal .tituloAviso.newsletter{
	font-size: 45px;
	line-height: 45px;
   	font-family: "IberPangea Medium", sans-serif;
   	color: #007F33 !important;
   	padding-bottom: 16px;
   	margin-top:0;
}
/************/
/*	MOBILE	*/
/************/
@media screen and (max-width: 500px){
	div#ventanaModal.ventanaModalNewsletter {
	    width: 25rem !important;
	    max-width: 25rem !important;
    }

	div#ventanaModal div#contenedorVentanaModal.ventana-newsletter #dialog{
	    width: 20rem !important;
	}
}
/* Para pantallas inferior a 768px (mobile) */
@media screen and (max-width: 47.95em) {
	div#ventanaModal {
	    width: 100%;
	    left: 50%;
	}
	div#ventanaModal div#contenedorVentanaModal {
		right: 50%;
	}
	div#ventanaModal div#contenedorVentanaModal #dialog {
		max-width: 100%;
    	width: 100%;
	}
}