/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */
.header {
	position: relative; 
	z-index: 11; 
}
.header-container {
	margin-top: 40px;
}
.header .header-inner {
	position: fixed; 
	left: 0; 
	top: 0; 
	width: 100vw; 
	height: 50px;
	display: flex;
	justify-content: space-between; 
	align-items: center;
	padding: 0 0 0 10px; 
	background: #181f38; 
	z-index: 5; 
	color: rgba(255, 255, 255, .45);
}

.header .logo {
	width: 140px;
	flex: 0 0 140px;
}

.header .form-search {
	display: none; 
}

.header .header-aside {
	display: flex; 
	align-items: center;
}

.header .profile {
	display: inline-block; 
	vertical-align: middle; 
	margin-top: 1px; 
	font-size: 0;
	color: inherit;
	text-transform: none; 
	text-decoration: none; 
}

.header .profile span:last-child {
	display: inline-block; 
	margin-top: 4px; 
}

.header .avatar {
	width: 22px;
	height: 22px;
	line-height: 22px;
	position: relative;
}

.header .avatar .user-icon {
	font-size: 30px;
	position: absolute;
	left: -4px;
	top: -4px;
}


@media ( min-width: 767px ) {
	.header .logo {
		width: 185px;
		flex: 0 0 185px;
	}
}

@media ( min-width: 1100px ) {
	.header .avatar .user-icon {
		font-size: 38px;
	}
	.header {
		/* min-height: 80px; */
		/* padding: 0 15px;  */
	}
	.header .header-inner {
		height: 76px;
	}
	.header .logo {
		margin-top: -4px; 
	}

	.header .form-search input {
		/* display: none;  */
	}

	.header .profile {
		font-size: 16px; 
		margin-right: 0; 
	}
	
	.header .avatar {
		width: 30px; 
		height: 30px; 
		line-height: 30px;
	}
	
	.header .header-aside {
		min-width: 190px;
	}

	.header .form-search {
		display: block; 
		position: relative; 
		z-index: 11; 
	}
}

@media ( min-width: 1525px ) {
	.header .logo {
		width: 185px;
		flex: 0 0 185px;
	}

	.header .header-aside {
		width: 228px; 
	}
}