.header-section {
	position: relative;
	z-index: 20;
	width: 100%;
	height: 60px;
	background-color: #415968;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.header-section .logo {
	width: 241px;
	margin-left: 20px;
	position: relative;
	z-indeX: 20;
}

.header-section .logo img {
	display: block;
	width: 100%;
	filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
}

.header-section .weather {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 37px;
	border-radius: 4px;
	margin-right: 4px;
	text-align: center;
}

.header-section .weather .icon {
	color: white;
	font-size: 14px;
}
.header-section .weather .icon {
	color: white;
	font-size: 14px;
}
.header-section .weather .icon i.far{
	font-size: 16px;
}
.header-section .header-right {
	display: none;
}
.header-section .search-cont {
	z-index: 21;
}

.header-section .search-cont:not(.active) .search_widget_headerbox { 
	opacity: 0;
	pointer-events: none;
	transition: opacity 300ms ease;
 }

@media (min-width: 1025px) {
	.header-section {
		background: none;
		height: auto;
	}

	.header-section .top-nav-cont {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		display: flex;
		justify-content: space-between;
	}

	.header-section .header-right {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: flex-end;
		width: 100%;
	}

	.header-section .header-left {
		position: absolute;
		left: 0;
		top: 0;
		margin-left: 20px;
		max-width: 241px;
	}

	.header-section .logo {
		margin-left: 0;
		margin-top: 10px;
		width: 100%;
	}

	.header-section .logo img {
		width: 241px;
		height: 40px;
	}

	.header-section .header-top {
		position: relative;
		width: 100%;
		display: flex;
		justify-content: flex-end;
		min-height: 32px;
		padding-right: 90px;
	}
	
	.header-section .header-bottom {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		background-color: rgba(167,155,133,0.65);
		border-radius: 10px 0 0 10px;
	}

	.header-section .header-bottom > .contentRender{
		height: 100%;
	}
	
	.header-section .enews-wrapper {
		position: absolute;
		bottom: 7px;
		right: 30px;
	}

	.header-section .header-top-right {
		display: flex;
		align-items: center;
	}

	.header-section .blog-link {
		display: inline-block;
		padding: 9.5px 22px;
		color: white;
		font-size: 17px;
		text-transform: uppercase;
		font-weight: 800;
		margin-right: 35px;
		background-color: #6fb43f;
	}

	.header-section .weather {
		color: #044890;
		background-color: transparent;
		height: auto;
		width: auto;

	}
	.header-section .weather-wrapper {
		min-width: 71px; /* you want to take up the space since weather takes a second to load */
		transition: background-color 300ms ease;
	}

	.header-section .weather .icon {
		color: #044890;
		font-size: 18px;
	}

	.header-section .weather .icon i.far{
		font-size: 18px;
	}
	
	.header-section .search-cont.active .search-button {
		pointer-events: none;
	}

	.header-section .search-button {
		text-align: center;
		cursor: pointer;
		background: none;
		width: 30px;
		padding: 0;
		margin: 0;
	}
	
	.header-section .search-button .open {
		font-size: 18px;
		margin-top: 6px;
	}

	
	.header-section .search_widget_headerbox {
		position: absolute;
		top: 0;
		right: 65px;
		margin: 0;
		padding: 0px;
		width: 290px;
		background: #ccc;
		opacity: 1;
		pointer-events: all;
		z-index: 10;
	}
}

@media screen and (min-width: 1500px) {
	.header-section .header-left {
		margin-left: 115px;
		max-width: 350px;
	}

	.header-section .logo {
		margin-top: 20px;
	}
}