.contenedor
{
	min-width: 10000px;
	min-height: 10000px;
	width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
	cursor: grab;
}

.ventana
{
	display: block;
	position: absolute;
	box-shadow: 5px 5px 9px rgb(0 0 0 / 20%);
	top:90px;
	left:90px;
	/*transform: translateZ(0);*/
	transform-origin: 0% 0px;
	backface-visibility: hidden;
	border-radius: 4px 4px 2px 2px;
	transition: box-shadow 0.3s;
	user-select: none;
	cursor: default;
}

.ventana::after {
	content: "";
	display: block;
	position: absolute;
	width: 13px;
	transform: rotate(-45deg);
	height: 1px;
	background-color: #525252;
	bottom: 7px;
	right: 1px;
	z-index: 5;
}

.ventana::before {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    transform: rotate(-45deg);
    height: 1px;
    background-color: #525252;
    bottom: 4px;
    right: 1px;
    z-index: 5;
}


/*------------------------------------*/
/*Sub clases*/
.ventana_cabezal {
    display: flex;
    position: relative;
    align-items: center;
    top: 0;
    padding: 8px 5px;
    height: 34px;
    cursor: move;
    user-select: none;
    border-radius: 4px 4px 0px 0px;
    box-sizing: border-box;
    padding-top: 12px;
    padding-left: 11px;
	z-index: 99999;
}

.ventana_cabezal_titulo
{
	letter-spacing: 0.5px;
    font-weight: bold;
	padding-left: 7px;
}

.ventana_cabezal_candado{
	display: inline-block;
	color: #ad2020;
	padding: 4px;
	top:6px;
	position: absolute;
	right: 53px;
	cursor:pointer;
	width:15px;
	height:15px;
}

.ventana_cabezal_cruz{
	display: inline-block;
	color: #ad2020;
	padding: 4px;
	top:7px;
	position: absolute;
	right: 14px;
	cursor:pointer;
	width:15px;
	height:15px;
}
/*------------------------------*/
.ventana_contenedor{
	display: block;
	position: relative;
	width: 100%;
	height: calc(100% - 36px);
}


/*Tabla seccion centrado celda*/
.textoTablaEstandar{
	font-size:13px;
	display: block;
	overflow: hidden;
	white-space:nowrap;
    text-overflow: ellipsis;
    text-align: center;
}


/* css div de re ajuste */

.ventana_elem_re_con > div
{
	display: block;
	position:absolute;
	width:10px;
	height: 10px;
	z-index: 200;
}

.ventana_elem_re_left_top
{
	top:0;
	left:0;
	transform:translate(-50%, -50%);
	cursor:nw-resize;
}

.ventana_elem_re_left_bottom
{
	bottom: 0;
	left: 0;
	transform:translate(-50%, 50%);
	cursor:ne-resize;
}

.ventana_elem_re_right_top
{
	top:0;
	right: 0;
	transform:translate(50%, -50%);
	cursor:ne-resize;
}

.ventana_elem_re_right_bottom
{
	bottom: 5px;
	right: 5px;
	transform:translate(50%, 50%);
	cursor:nw-resize;
}



/*=================================================================================================================*/
/*=================================================================================================================*/
/*=================================================================================================================*/
/*Facilitador de orden*/

.v_cont, .v_cont_span_input
{
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.v_cont_columnas, .v_cont_span_input
{
	display: flex;
	flex-direction: column;
}

.v_cont_centrado
{
	display: flex;
	justify-content: center;
	align-items: center;
}


.v_cont_left_centrado
{
	display: flex;
	justify-content: left;
	align-items: center;
}

.v_cont_right_centrado
{
	display: flex;
	justify-content: right;
	align-items: center;
}


.v_cont_tabla
{
	width: 100%;
	height: 100%;
}


.v_cont_span_input
{
	justify-content: center;
}

.v_cont_span_input > span
{
	margin-bottom: 8px;
	font-weight: 600;
}

/*==================================================================*/
/* SubVentana */

.v_subVentana_capaOscura
{
	display: flex;
	position: absolute;
	z-index: 2;
	top:0;
	left: 0;
	background-color: #000;
	opacity: 0.3;
	width: 100%;
	height: 100%;
}

.v_subVentana
{
	display: flex;
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	background-color: #cbd1b8;

	border: 1px solid #929292;
	border-radius: 5px;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	box-sizing: border-box;
	padding: 0 3%;


	width: 80%;
	height: 90%;
	z-index: 3;
	overflow: hidden;
}

/*=============================================================================================*/

.v_subVentana_titulo
{
	display: flex;
	height: 60px;
	min-height: 60px;
	justify-content: space-between;
	align-items: center;
}

.v_subVentana_titulo > div:nth-child(1)
{
	font-weight: bold;
	font-size: 20px;
}

.v_subVentana_titulo > div:nth-child(2) > span
{
	font-size: 20px;
	color: #3b3b3b;
	cursor: pointer;
}

.v_subVentana_titulo > div:nth-child(2) > span:hover
{
	color: #351e1e;
}

/*=============================================================================================*/

.v_input_text_titulo
{
	width: 80%;
	height: max-content;

	flex-direction: column;
}

.v_input_text_titulo > span
{
	margin-bottom: 5px;
}

.v_input_text_titulo > input, select
{
	width: 100%;
}
/*=============================================================================================*/

.v_subVentana_cabezal
{
	display: flex;
	height: 40px;
	min-height: 40px;
	align-items: center;
	margin: 5px 5px;
	padding: 0px 10px;
	width: calc(100% - 10px);
	box-sizing: border-box;
	justify-content: space-between;
	border-bottom: 1px solid #777777 !important;
}

.v_subVentana_cabezal > span
{
	font-size: 20px;
}

.v_subVentana_cabezal > span:nth-child(1)
{
	font-weight: bold;
}

.v_subVentana_cabezal > span:nth-child(2)
{
	cursor: pointer;
}

.v_subVentana_cabezal > span:nth-child(2):hover
{
	opacity: 0.7;
}

.v_subVentana_cabezal > span:nth-child(2):active
{
	transform: scale(0.95);
}

/*=============================================================================================*/
/*=============================================================================================*/


.v_subVentana_pantalla_carga
{
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgb(169, 169, 169, 0.5);
	z-index: 4;
}

.v_subVentana_pantalla_carga > div
{
	display: flex;
	position: absolute;
	width: 80%;
	height: 70%;
	background-color: rgb(186, 211, 172);
	z-index: 5;
	
	top:50%;
	left: 50%;
	transform: translate(-50%, -50%);
	flex-direction: column;
	align-items: center;
	border:1px solid #c0c0c0;
	border-radius: 3px;
}

.v_subVentana_pantalla_carga > div > span
{
	margin-top: 15%;
	font-size: 30px;
}

.v_subVentana_pantalla_carga > div > div
{
	margin-top: 10%;
	left: 0;
	margin-left: 0;
	transform: scale(1.5);
}