<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* MODAL */
/*La cubierta de la pantall*/
.pantalla_modal{
	position:absolute;
	top:0px;
	left:0px;
	background-color:rgba(0,0,0,0.4);/*overlay*/
	background-image: url(../hex-transp-15.png);
	background-repeat: repeat;
	cursor:wait;
	z-index:9999;
	min-width: 280px;
}
/*el cuadro que contiene todos los elementos*/
.pantalla_modal_msg {
	float:left;
	position:absolute;
	cursor:default;
	background-color: #ffffff;
	box-shadow: 3px 3px 3px rgba(0,0,0,0.25);
}
/*la linea completa que contiene el titulo y el boton de cerrar*/
.pantalla_modal_encabezado{
	float:left;
	height:30px;
	min-width: 250px;
	width: 100%;
	background-color: #040e12;
	cursor: move;

}

/*El cuadro del titlo para ModalCuadro*/
.pantalla_modal_titulo2{
	float:left;
	height:30px;
	/*Puedes cambiar lo siguiente:*/
	padding:8px 0px 0px 8px;
	text-transform: uppercase;
	font-size: 8pt;
	color: white;
	width: 250px;
	overflow: hidden;
	white-space: nowrap;
}
.pantalla_modal_close{/*width total: 23px */
	background: url(ico_Close.png) no-repeat center;
	width:30px;
	height:30px;
	display:block;
	float:right;
	cursor:pointer;
}

.pantalla_modal_contenido2{
	padding:0px 0px 0px 0px;
	float:left;
	display:block;
	
}

.Modal_Respoonsivo{
	width: auto;
	float: left;
}

.ResponsiveContenidoModalDoc&gt;div{
	float: left;
}



.wait_overlay{
	background:url(wait_overlay.png);
	width:260px;
	height:350px;
	display:block;
	position:absolute;
	cursor:default;
}
.wait_overlay_progress {
	background:url(progress.gif);
	position:absolute;
	width:214px;
	height:15px;
	display: block;
	left:23px;
	top:300px;
}

.wait_overlay_msg {
	position:absolute;
	width:200px;
	height:112px;
	display: block;
	left:31px;
	top:172px;
	font-size:0.9em;
	overflow-y:auto;
	overflow-x: hidden;
}

</pre></body></html>