@charset "utf-8";

#header {
	display: flex;
    /*flex: 1;*/
    justify-content: left;
    align-items: center;
	
	position: relative;
    width: 100%;
    height: 70px;
    /* overflow: hidden; */
    min-width: 980px;

	background: #ffffff;

    z-index: 9999;

	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	/*
	box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
	*/
}

#header ._logo_wrap {
	margin-left: 2rem;
}


#menu {
	display: flex;
	justify-content: left;
    align-items: center;
    
    flex-wrap: nowrap;

	margin-left: 6.5rem;
	
	color: var(--gray-900);
}
	

#menu ._item {
	display: inline-flex;
    flex: auto;
    justify-content: left;
    align-items: center;

	padding: 0.4rem 1.0rem;

	border-radius: 1.3rem;

	font-size: 1.5rem;
	
	font-weight: 500;
	
	background: transparent;

	cursor: pointer;
}
#menu ._item:nth-child(n+1) {
	margin-right: 4rem;
}
#menu ._item:hover {
	/*
	color: #0f438e;
	*/
	
	background: var(--gray-200);
}
#menu ._item.-active {
	color: #0f438e;
	
	/*
	color: #ffffff;
	*/
	/*
	background: var(--blue-800);
	*/
}


#menu ._item ._icon {
	pointer-events: none;
	
	height: 15px;
}
#menu ._item:hover ._icon {
	/*
	fill: #0f438e;
	*/
}
#menu ._item.-active ._icon {
	fill: #0f438e;
}

#menu ._item ._text {
	pointer-events: none;
	
	margin-left: 0.4rem;
}

#menu ._item._admin:before {
	color: var(--gray-800);

	font-size: 1.6rem;

	content: '\f4fe';
}
#menu ._item._admin.-active:before {
	color: #0f438e;
}


/*
#header ._right ._logout:before {
	font-family: 'Icons';

	display: inline-block;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
  
	speak: none;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
*/

#header ._right ._logout {
	display: inline-flex;
    justify-content: left;
    align-items: center;
	
	margin-right: 1.7rem;
	
	color: var(--gray-700);
	
	font-size: 1.4rem;
	
	line-height: 0;
}
#header ._right ._logout:before {
	font-size: 1.9rem;
	
	content: '\f2f5';
}
#header ._right ._logout:hover {
	color: var(--gray-800);
}
#header ._right ._logout:focus:active {
	transform: translate(1px, 1px);
}



#header ._right {
	display: inline-flex;
    justify-content: left;
    align-items: center;
	
	position: absolute;
	
	top: 16px;
	right: 0;
}

#header ._alarm {
	position: relative;
	
	margin-right: 3.5rem;
}

#header ._alarm i {
    font-size: 25px;
    color: #7c878e;
}

#header ._alarm .count {
	position: absolute;
	right: -3px;
	top: 0px;
	display: inline-block;
	border-radius: 10px;
	width: 16px;
	height: 16px;
	text-align: center;
	background: #3386FF;
	color: #fff;
	line-height: 16px;
	font-size: 10px;
	font-weight: 400;
}


#header h1 figure {
	width: 100%;
	height: 18px;
	/*margin-top: 25px;*/
	background-size: contain;
	background: url('/images/spade/lobig_logo.png') 0 0 no-repeat;
}

