.menucontainer {
	position: fixed;
	border-bottom: 1px solid #00f;
	top: 0px;
	left: 0px;
	height: 80px;
	width: 100%;
	background-color: white;
	z-index: 100;
	overflow: hidden;
	display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.menucontainer:before {
	box-sizing: border-box;
	content: attr(ddd);
	text-align: right;
	padding-top: 5px;
	font-size: 20px;
	font-weight: bold;
	display: inline-block;
	background-color: var(--bg-lite);
	position: absolute;
	width: 100%;
	height: 35px;
	top: 20px;

}

.menulogo {
	margin-top: 13px;
	margin-right: 10px;
	float: right;
}

.menuUser {
	margin-top: 18px;
	margin-right: 10px;
	font-size: 30px;
	font-weight: bold;
	color: #000;
	z-index: 1;
}

.menuUser img {
	height: 30px;
	margin-right: 0.3em;
}

.top_icon {
	position: relative;
--	float: left;
	height: 80px;
	min-width: 75px;
	color: black;
	margin-left: 0.2em;
	text-align: center;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	background-repeat: no-repeat;
}

.imgdiv, .chardiv {
	background-repeat: no-repeat;
	background-color: transparent;
	display: inline;
	width: 64px;
	height: 64px;
	background-position: 0px 0px;
}

.chardiv {
	display:flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	color: #000;
}

A.top_icon:hover {
	color: black;
	background-position: -64px 0px ;
}

.top_icon span {
	text-align: center;
	width: 100%;
}


.icona_on {
	background-color: rgba(180,180,255,0.45);
}

.icona_on.top_icon span {
	color: red;
}

.icona_false {
	opacity: 0.6;
}

.ok_1 span {
	color: #F00;
}

.ok_2 span {
	color: #0A0;
}

.menucontainer .label {
	font-size: 12px;
}

