/*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 div#contenedorVentanaModal {
    right: 50%;
    position: relative;
    background-color: white;
     display: table;
    width: 100%;
}
div#ventanaModal div#contenedorVentanaModal #dialog{
	width: 27em;
    border-right: 1px solid #F0F0F0;
    display: table-cell;
    padding: 2em;
}    
div#ventanaModal div#contenedorVentanaModal .contenedorCerrar {
    display: table-cell;
    vertical-align: middle;
    width: 3em;
    text-align: center;
}
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: HelveticaNeue-Thin, sans-serif;
}

/************/
/*	MOBILE	*/
/************/
/* 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%;
	}
}