/* SMALL CSS */


#small_main, #small_sub_c{ display: inline-flex; color: var(--text-light); }
#small_main.show, #small_sub_c.show { background-color: rgba(0,0,0,.1); }

header, header.closed{
	width: 100vw;
	left: 0;
	justify-content: space-between;
	background-color: var(--bg-main-high);
}

#main_menu { width: 100vw; }
	#main_menu.hidden{ left: -100vw; } 
#main_nav { width: calc(100vw - 80px); font-size: 1.2em; }
	#main_menu.closed #main_nav { margin-left: -100vw; }
#main_menu.closed { width: 0; }

	.group_title, .nav_alone, .nav_item { padding: 7px 0px; }

#info_container.closed, #info_container {
	width: 100vw;
	margin: 0px;
}

#main_menu.closed #bar_menu{
	margin-left: -80px;
}


/* SUB CONTROLS */

#sub_controls{
	position: fixed;
	padding: 0;
	margin: auto;
	top: 75px;
	width: 100vw;
	height: calc(100vh - 75px);
	
	display: none;
	
	background-color: rgba(255,255,255,.95);
	
	flex-direction: column;
}

	#sub_controls.show { display: flex; }

#sub_controls > * {
	margin: 10px auto !important;
}

	.list_search_options_container, .list_search_options_container.on { height: 75px; width: 100vw; }

/* L I S T */

#list_row_options {
	bottom: -100vh;
    top: auto;
    width: 100%;
	transition: bottom .5s ease;
	border-top: var(--border-main-high);
}

#list_row_options.opened { bottom: 0; }

#list_row_options li { padding: 15px 0px 15px 35px;}

/* M A N A G E */

.input_1x, .input_2x, .input_3x, .input_4x, .input_5x, .input_6x { 
	width:98%;
	margin: 10px auto;
	display: block;
}

	.span_form_btns {
		width: 100vw;
		justify-content: center;	
		left: 0;
	} 


/* SUDI LIST */

.sudi_tb_container:not(.sudi_report_tb) .sudi_tb_item_container {min-width: auto; }
.sudi_tb_container:not(.sudi_report_tb) .st_head{ display: none !important; }

.sudi_tb_container:not(.sudi_report_tb) .st_row {
    display: block !important;
    margin: 15px auto;
    font-size: 1.2em;
    width: 90vw;
    position: relative; /* Asegúrate de tener position relative aquí si quieres posicionar absolutamente el after */
    padding-bottom: 10px; /* Añade un padding para dar espacio al borde */
}

.sudi_tb_container:not(.sudi_report_tb) .st_row::after {
    content: ""; /* Aquí puedes poner "Hola" si quieres que se muestre esa palabra */
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0; /* Posicionando al final de cada fila */
    border-bottom: 1px solid var(--border-gray-medium); /* Estilo de la línea, ajusta el color y grosor según necesites */
}

.sudi_tb_container:not(.sudi_report_tb) .st_row:last-child::after {
    content: none; /* Esto asegurará que el último elemento no tenga el after */
}


.sudi_tb_container:not(.sudi_report_tb) .st_item { display: block !important; margin: 0px;  margin: 3px 0px; padding: 5px 0px; }



/* C U R T A  I N */

#curtain_container.r_panel_show .curtain {
	width: auto;
}
