.main_menu
{
	width: calc(100% - 45px);
	position: fixed;
	user-select: none;
	z-index: 3000;
	height: 45px;
	right: 0;
}

/*##################################################################################################################################*/
/*##################################################################################################################################*/
/*##################################################################################################################################*/


.main_menu > ul /* Cada menu ul dentro del menu principal */
{
	list-style: none;
	display: flex;
	height: 46px;
}

.main_menu li
{
	width: 100%;
	min-width: 50px;
	position: relative;
	list-style: none;
}

.menu_header /* Menu Header HARD CODED CENTER */
{
	justify-content: center;
}

.menu_text_cont
{
	color: white;
	background-color: rgb(0, 0, 0);
	padding: 12px 10px;
	font-weight: bold;
	display: flex;
	align-items: center;
	width: calc(100% - 20px);
}

.main_menu span[class^="icon-"]
{
	color: #DF7401;
}

.menu_text_cont:hover
{
	background-color: rgb(36, 36, 36);
	cursor: pointer;
}

.menu_text
{
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sub_menu_indicator
{
	position: absolute;
	right: 5%;
	color: #DF7401;
}

/* Sub menus handler desde JS */
/* ======================================== */
/* PD: Parecen repetitivas pero NOOO */
.hide_menu
{
	display: none;
}
/* ======================================== */

.sub_menu_base_desplegado
{
	display: flex;
	list-style: none;
	flex-direction: column;
}

.sub_menu_avanzado_desplegado
{
	position: absolute;
	top: 0;
	left: 100%;
	width: auto;
	display: flex;
	list-style: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 100;
}

.sub_menu_avanzado_desplegado > li
{
	width: 105%;
	min-width: 50px;
	position: relative;
	list-style: none;
}

.sub_menu_window_overflow
{
	left: 0;
}
.sub_menu_window_overflow > li
{
	right: 100%;
}


/* ======================================================================= */

.menu_desactivado > a
{
	color: #c0c0c0;
}

.menu_desactivado > a > span[class^="icon-"]
{
	color: #c0c0c0;
}

.menu_desactivado > a:hover
{
	background-color: rgb(0, 0, 0);
    cursor: default;
}