header {
    background-color: #F4F4F4;
	box-shadow: 0 2px 18px rgba(168,175,196,.5);
	z-index: 3;
	position: relative;
	transition: 0.3s margin;
}

header.search-active {
	margin-bottom: 20px;
	transition: 0.3s margin;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 65px;
	display: flex;
	align-items: center;
}

.header-right {
    display: flex;
}

.header-icons {
}

.header-right .header-search a i {
    color: #353840;
}

#searchform {
	display: flex;
	align-items: center;
	border: 1px solid #555555;
	background-color: #ffffff;
	padding: 2px 5px;
	border-radius: 2px;
}

#s {
	border: none;
	outline: none;
	background: none;
	font-size: 12px;
	width: 120px;
}

#searchsubmit {
	background: none;
	border: none;
	outline: none;
	background-image: url('https://static.thenounproject.com/png/102634-200.png');
	background-repeat: no-repeat;
	background-size: 15px;
	padding: 0;
	width: 15px;
	margin-left: 5px;
}

/* #searchform:hover #s{
	display: inline-block;
} */

.header-nav-close {
	display: none;
}

.header-menu {
	display: none;
}

.menu-item a{
	color: #353840;
	font-weight:700;
}
.fa-search.header-search-icon {
	display: none;
}

/* .menu-item-has-children:after {
	content: '\f078'
} */

@media (max-width: 1070px) {
	.header-nav-close {
		display: block;
	}

	.header-menu {
		display: block;
	}
	
	.header-nav {
		position: absolute;
		top: -500px;
		left: 0;
		transition: 0.3s;
		background-color: #f4f4f4;
		width: 100%;
		box-shadow: 0 10px 10px rgba(168,175,196,.5);
		
		
	}
	
	.menu-top-menu-container {
		max-width: 800px;
		margin: 0 auto;
	}
	
	.header-nav.active  {
		position: absolute;	
		top: 65px;
		left: 0;
		transition: 0.3s;
	}
	
	#menu-top-menu {
		flex-direction: column;
	}
	
	.menu-item {
		padding: 10px 0;
	}
}

@media (max-width: 450px) { 
	.header-nav.active {
		top: 55px;
	}
	
	.header-logo {
		height: 55px;
	}
	
	.fa-search.header-search-icon {
		display: block;
	}
	
	#searchform {
		display: none;
		position: absolute;
		right: 20px;
		left: 20px;
		top: 100%;
		padding: 0;
		border: none;
		background: none;
	}
	
	#s {
		padding: 0 10px;
		border: 1px solid #278bc4;
		background-color: #ffffff;
		width: -webkit-fill-available;
		height: 31px;
		box-sizing: border-box;
	}

	#searchsubmit {
		width: auto;
		color: #ffffff;
		background: none;
		background-color: #278bc4;
		margin-left: 0;
		padding: 7px 15px 8px;
	}
}
