/* MODAL */
/*La cubierta de la pantall*/

/*
	document.getElementById("scrollbar").style.display = "block";
   	document.body.style.overflow = "hidden";
	<div id="scrollbar" style="overflow-y: scroll; top: 0; right: 0; display: none; height: 100%; position: fixed;"></div>
*/

.pantalla_modal{
	position:absolute;
	top:0px;
	left:0px;
	background-color: rgba(23,41,46,0.5);
	cursor:wait;
	z-index:9999;
	min-width: 280px;
}
/*el cuadro que contiene todos los elementos*/
.pantalla_modal_msg {
	float:left;
	position:absolute;
	cursor:auto;
	background-color: #ffffff;
	box-shadow: 3px 3px 3px rgba(0,0,0,0.5);
	border-radius: 4px;
}
/*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: #000;
	cursor: move;
	border-radius: 4px 4px 0px 0px;

}

/*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;
	border-radius: 4px 4px 0px 0px;
}
.pantalla_modal_close{/*width total: 23px */
	background: url(ico_Close.svg) no-repeat center;
	width:30px;
	height:30px;
	display:block;
	float:right;
	cursor:pointer;
	border-radius: 0px 4px 0px 0px;
}

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

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


.wait_overlay {
    background-color: white;
    width: 260px;
    height: 300px;
    display: block;
    position: absolute;
    cursor: default;
    border-radius: 0.5rem;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.25);
}

.wait_overlay_logo{
	position:absolute;
	width:214px;
	height:70px;
	display: block;
	left:24px;
	top:20px;
	background-image: url(../logo.svg);
	background-size: auto 100%;
}
.wait_overlay_progress {
	background:url(progress.gif);
	position:absolute;
	width:214px;
	height:15px;
	display: block;
	left:23px;
	top:266px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80% auto;
}

.wait_overlay_msg {
    position: absolute;
    width: 214px;
    height: 134px;
    display: block;
    left: 23px;
    top: 112px;
    font-size: 0.9em;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 10px;
    border: 1px solid #eaeaea;
    border-radius: 0.5rem;
    background-color: #fff;
    font-weight: bold;
    /* box-shadow: 2px 2px 2px inset rgba(0,0,0,0.1); */
}
