* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
}
:root {
	--color: #888;
	--title_color: #001D83;
	--red: #ffd9da;
}
html {
	width: 100%;
	min-height: 100%;
}
body {
	width: 100%;
	min-height: 100vh;
	font-family: Roboto;
	font-size: 14px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
body div {
/*	border: 1px solid #f00;*/
}

.img_gen { width: 100%; }
.ico_gen { width: 100%; }
.cursor { cursor:pointer; }
.bg_gris { background-color: #F0F0F0; }
.bg_red { background: #ffd9da; }
.bg_green { background: #d9ffda; }
.bg_orange { background: #ffe282; }
.color_red { color: #cc0000; }
.color_green { color: #006600; }
.bold { font-weight: bold; }
.italic { font-style: italic; }
.header, .content, .content_leading, .footer { box-sizing: border-box; }
.loading { width: 55px; }
.table_part_img { width: 10px; margin-left: 5px; cursor: pointer; }
.table_part_txt { text-align: center; flex-grow: 1; }
.rowWrapSelect { background: #EEE; }
input:focus { outline: none; }
select:focus { outline: none; }
.contener {
	width: 100%;
	min-height: 100vh;
	flex-grow: 1;
	margin: 0 auto;
	background-color: #FFF;
	display:flex;
}
.contenido {
	padding: 10px;
	flex-grow: 1;

}
.header {
	box-sizing: border-box;
	width: 100%;
	display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	padding: 0 20px 0 0;
	position: relative;
}

.footer {
	width: 100%;
	padding: 10px 0;
	background-color: #052555;
	display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	grid-gap: 20px;
	color: #FFF;
}
.ficha_lista_ico, .lista_ico {
	display: flex;
    justify-content: center;
    align-items: center;
	padding: 0px;
	cursor: pointer;
	border: 1px solid #EEE;
}
.home_contener {
	width: 100%;
	min-height: 100%;
	display: flex;
    flex-direction: column;
}


.inicio_contener {
	position: relative;
	width: 100%;
	min-height: 100%;
	padding: 20px;
}

.inicio_box {
	display: grid;
    grid-template-columns: 1fr 250px;
    grid-gap: 20px 50px;
}

.inicio_contener_bg_img {
	opacity: 0.15;
	position: absolute;
	left: 25%;
	top: 40%;
	width: 50%;
	z-index: 1;
}
/*.inicio_item {
	width: 180px;
	height: 180px;
	background-color: #DDD;
	border: 1px solid #888;
	overflow: none;
	border-radius: 5px;
	box-shadow: 3px 3px 10px #AAA;
	display: flex;
    justify-content: center;
    align-items: center;
	font-size: 20px;
	text-align: center;
	color: #FFF;
	cursor: pointer;
	transition-duration: 0.3s;
	position: relative;
}
.inicio_item:hover {
	background-color: #BBB;
	font-weight: bold;
	box-shadow: 5px 5px 10px #AAA;
	transform: translate(-2px, -2px);
}
.inicio_item img {
	width: 70px;
	position: absolute;
	top: 30px;
	left: calc(50% - 40px);
}*/
.m_m_box {
	width: 100%;
	height: 40px;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	border-radius: 3px;
	padding-right: 5px;
	margin: 0px 0 5px 0;
}
.m_m_box:hover {
	background-color: #5F6163;
}
.menu_config_name {
	 position:absolute;
	 bottom:30px;
	 left:0;
	 width: 100%;
	 display: flex;
     justify-content: center;
     align-items: center;
	 color: #444;
	 font-size: 16px;
	 font-family: Roboto;
}

/* PAGE */

.page_tit {
	font-size: 20px;
	font-weight: bold;
	color: #444;
	text-shadow: 2px 2px 4px #AAA;
}
.page_bt {
	width: max-content;
	cursor: pointer;
	border: 1px solid #AAA;
	background: #EEE;
	border-radius: 5px;
	padding: 5px 10px;
	box-shadow: 2px 2px 4px #444;
	transition: all 0.2s ease-in-out;
	margin: 5px;
	display: flex;
    justify-content: center;
    align-items: center;
}
.page_bt:hover {
	transform: translate(-1px, -1px);
	box-shadow: 3px 3px 5px #AAA;
}
.page_bt:active {
	transform: translate(1px, 1px);
	box-shadow: 1px 1px 2px #AAA;
}

.nocursor {
	user-select: none;
}

.table_tit {
	background: var(--color);
	color: #FFF;
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
	padding: 5px;
	border: 1px solid #AAA;
}
.table_subtit {
	background: var(--color);
	color: #FFF;
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
	padding: 2px 5px;
	border: 1px solid #AAA;
}
.table_txt {
	display: flex;
    justify-content: flex-start;
    align-items: center;
	padding: 3px;
	border: 1px solid #EEE;
}
.table_total {
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
	padding: 2px 5px;
	border: 1px solid #AAA;
	font-weight: bold;
}
.table_width {
	min-width: 600px;
	grid-column: 1/-1;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	margin-top: 10px;
}
.table_subzag {
	color: #333;
}
.table_act {
	padding: 3px;
	display: flex;
    justify-content: center;
    align-items: center;
	border: 1px solid #CCC;
}
.table_info {
    grid-column: 1/-1;
	display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
	border: 1px solid #CCC;
	margin-bottom: 20px;
	padding: 10px;
	background: #EEE;
}
.titulo_box {
	display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
	margin-top: 10px;
	padding: 0 10px;
}
.titulo_item {
	width: 40px;
	margin: 0 10px;
	cursor: pointer;
}
.item_buscar {
	width: 100%;
	padding: 10px;
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
	
}
.item_input {
	width: 300px;
}
.item_input input {
	padding: 6px;
}
.border_shadow {
	border: 1px solid #333;
	box-shadow: 2px 2px 4px #AAA;
}
.pointer {
	cursor: pointer;
}
.center {
	display: flex;
    justify-content: center;
    align-items: center;
}
.input_gen, .select_gen {
	width: max-content;
	padding: 5px;
	border-radius: 3px;
	outline: none;
	border: 1px solid #AAA;
}

.new_item_box {
	padding: 10px;
	width: 100%;
	display: none;
    grid-template-columns: repeat(2, 1fr) 2fr repeat(6, 1fr);
    grid-gap: 2px;
}
.new_item_titulo {
	grid-column: 1/-1;
	font-size: 20px;
	font-weight: bold;
	color: #444;
	padding: 0 0 10px 10px;
}
.informe_box {
	width: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
}
.alert {
	color: #cc0000;
	font-size: 12px;
	grid-column: 1/-1;
	margin: 10px 0;
}
.confirm {
	color: #339900;
	font-size: 12px;
	grid-column: 1/-1;
	margin: 10px 0;
}
.img_tit {
	width: 13px;
	margin-left: 10px;
}

/*AUX BOX WITH HEADER*/
.asign_auxil_box {
	position: absolute;
	top: 100px;
	left: calc(50% - 300px);
	width: 600px;
	height: 400px;
	overflow: scroll;
	display: none;
    flex-direction: column;
	border: 1px solid #000;
	box-shadow: 2px 2px 4px #AAA;
	background: #FFF;
	z-index: 10;
}
.asign_auxil_top {
	width: 100%;
	background: #444;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	padding: 5px;
}
.asign_auxil_top_tit {
	text-weight: bold;
	color: #FFF;
}
.asign_auxil_top img {
	width: 20px;
	cursor: pointer;
}
.asign_auxil_busc_result {
	padding: 10px;
}
.asign_aux_list {
	width: 100%;
	display: grid;
    grid-template-columns: max-content 1fr;
    grid-gap: 2px;
}
.asign_auxil_content {
	display: flex;
    flex-direction: column;
}
.asign_auxil_busc_input {
	width: 100%;
	padding: 10px;
	display: flex;
}
.asign_auxil_busc_input input {
	border: 1px solid #000;
	border-radius: 5px;
	padding: 5px;
	width: 200px;
}
/**********************/

.grid_header {
	position: sticky;
	top: 0;
	z-index: 1;
}
.maxcontent {
	width: max-contnet;
}
.table_txt_ident {
	width: 1px;
	height: 1px;
}
.botones_box {
	grid-column: 1/-1;
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.botones_box div {
	margin: 10px 20px;
}
.text-right {
	text-align: right;
}

.ini_msm_contener {
	width: 100%;
}
.ini_msm_box {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-gap: 40px 25px; /* Vert, Horiz */
}
.ini_msm_cont {
	font-size: 13px;
	width: 100%;
	border: 1px solid #AAA;
	border-radius: 3px;
	box-shadow: 2px 2px 4px #AAA;
	padding: 15px 10px 10px 10px;
	background: rgba(255,255,255,0.8);
	z-index: 1;
	transition: all 0.2s ease-in-out;
	position: relative;
}
.ini_msm_cont:hover {
	border: 1px solid #333;
	background: rgba(240,240,240,0.5);
}
.ini_msm_cont1 {
	width: 100%;
}
.alert_box_tab, .alert_box_tab2 {
	width: 100%;	
	display: grid;
	max-height: 250px;
	overflow-y: scroll;
	scrollbar-width: thin;          /* "auto" or "thin" */
	scrollbar-color: #AAA #EEE;   /* scroll thumb and track */ 
	border-radius: 5px;
}

.alert_box_tab {
	grid-template-columns: max-content 1fr max-content; 
	grid-gap: 2px;
}
.alert_box_tab2 {
	grid-template-columns: 1fr; 
	grid-gap: 2px;
}

.hist_box {

}
.hist_box li {
	list-style: none;
    background: #FFF;
    border: 1px solid #888;
    position: relative;
    height: 30px;
    padding: 5px;
    cursor: pointer;
    transition: all .5s;
    color: #000;
    margin: 3px 3px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 2px 2px 4px #AAA;
	border-radius: 3px;
}
.hist_box li:hover {
	background: #DDD;
}

.ini_msm_tit {
	height: max-content;
	font-size: 14px;
	font-weight: bold;
	color: #333;
	width: 100%;
	margin: 0 0 10px 0;
}

/* ALERTAS */
.alert_tit {
	background: var(--color);
    color: #FFF;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 3px 5px;
    border: 1px solid #AAA;
}
.alert_txt {
	font-size: 12px;
    padding: 5px;
    border: 1px solid #AAA;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.alert_txt2 {
	width: 100%;
	font-size: 12px;
    padding: 5px;
    border: 1px solid #AAA;
}
.alert_hitit {
	position: absolute;
	top: -15px;
	left: 15px;
	background: #FFF;
	font-weight: bold;
	padding: 3px 10px;
}
.alert_zag {
	width: 100%;
	font-size: 12px;
    margin-top: 5px;
	font-weight: bold;
}

/* BU*/
.busc_box_general {
    width: 100%;
}
.busc_box_per {
	width: 100%;
    display: grid;
    grid-template-columns: max-content max-content;
    grid-gap: 0px;
}
.busc_box_per_val {
    border-bottom: 1px solid #EEE;
    padding: 5px 10px 5px 0;
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.busc_box_busc_name {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0 10px;
}
.busc_box_fecha_sel {
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.busc_box_bt_sel {
	grid-column: 1/-1;
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 5px;
}
.busc_box_per_res {
    padding: 5px 10px 5px 0;
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.busc_box_fecha {
	margin: 0 10px 0 0;
}
.busc_box_chebx_box {
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.busc_box_chebx_box {
	grid-column: 1/-1;
}
.busc_box_chebx_input {
	display: flex;
    justify-content: flex-start;
    align-items: center;
}
.busc_box_chebx_input input {
	cursor: pointer;
}
.busc_box_chebx_tit {
	display: flex;
    justify-content: flex-start;
    align-items: center;
	margin: 5px 20px 5px 5px;
}
.rowWrapper{
	display: contents;
}
.rowWrapper:hover > div{
	background-color: #EEE;
}
.comprob_img {
	width: 18px;
}
/* SOLAPAS */
.solapas_box {
	width: 100%;
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.solapa_item {
    border: 2px solid #CCC;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin: 0 1px;
    padding: 3px 5px;
    cursor: pointer;
}
.solapaMark {
	background: #777;
	color: #FFF;
}
/* // SOLAPAS */

.busc_box {
	width: 100%;
}
.busc_box_grid {
	display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2px 10px;
}
.busc_val {
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.busc_val_box {
	grid-column: 1/-1;
}












/**** END OF FILE ********/
.right { justify-content: flex-end; }
.left { justify-content: flex-start; }
.center { justify-content: center; }
.img_gen {	width: 100%; }
.btn:not(:disabled):not(.disabled) { cursor: pointer; }
.img_gen1 { width: 80px; }
.tright { text-align: right; }
.tcenter { text-align: center; }

/**** DEV HEADER ****/
.dev_header_info {
	width: 100%;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
	padding: 0 30px;
	font-size: 14px;
}