.header_box {
	width: 100%;
}
.header_tit {
	width: 100%;
	background: #444;
	color: #FFF;
	width: 100%;
	font-size: 20px;
	font-weight: bold;
	padding: 10px;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header_line {
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.header_separador {
	flex-grow: 1;
}
.header_user {
	width: 30px;
	cursor: pointer;
}
.header_empresa {
	margin: 0 10px;
	display: flex;
    flex-direction: row;
    justify-content: flex-between;
    align-items: center;
}
.header_empresa_sel, .header_empresa_logo {
	margin: 0 10px;
}
.header_empresa_sel select {
	padding: 5px 10px;
	border-radius: 5px;
}
.header_empresa_sel_sel * {
	border-radius: 5px;
	background-color: red;
	padding: 10px;
}
.header_multi {
	display: flex;
    justify-content: center;
    align-items: center;
}
.header_multi_txt {
	font-size: 12px;
	width: max-content;
	padding: 10px;
	height: 30px;
	border: 1px solid #CCC;
	display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 5px;
}
.header_user_name {
	font-family: Roboto, Verdana;
	font-size: 14px;
	font:weight: 100;
	margin-right: 10px;
}

/*/////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////*/
/**** MENU CSS ****/
.menu{
	display: flex;
	position: sticky;
	z-index: 100;
}
.principal {
	display: flex;
    justify-content: center;
    align-items: center;
}
.menu li{
	list-style: none;
	background: #FFF;
	border: 1px solid #888;
	position: relative;
	height: 30px;
	padding: 5px;
	cursor: pointer;
	transition: all .5s;
	color: #000;
	margin: 1px 3px;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	box-shadow: 2px 2px 4px #AAA;
}

.menu a {
	color: #000;
	text-decoration: none;
	display: block;
	text-align: center;
	line-height: 30px;
	transition: all .5s;
}

.menu li:hover {
	background: #DDD;
}
.principal:hover {
/*	height: 33px;*/
}

.menu ul {
	width: max-content;
	position: absolute;
	left: 0;
	top: 100%;
	display: none;
	padding: 3px 0px;
	margin-top: 0px;
}
.menu li:hover > ul {
	display: block;
}
.menu ul ul {
	display: none;
	top: 0;
	left: 100%;
}
.menu_img {
	width: 8px;
	margin-left: 5px;
}
.menu_text_box {
	width: 100%;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.menu_short {
	width: 100%;
	background: #FFF;
	display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.principal_short {
	width: max-content;
}
.page_bt_salir {
	width: max-content;
	cursor: pointer;
	border: 1px solid #FFF;
	background: #444;
	border-radius: 5px;
	padding: 5px 10px;
	box-shadow: 2px 2px 4px #444;
	transition: all 0.2s ease-in-out;
	margin: 5px 0 5px 15px;
	display: flex;
    justify-content: center;
    align-items: center;
	font-size: 12px;
}
.page_bt_salir:hover {
	transform: translate(-1px, -1px);
	box-shadow: 1px 1px 3px #888;
}
.page_bt_salir:active {
	transform: translate(1px, 1px);
	box-shadow: 1px 1px 2px #AAA;
}
/* MENU CSS */