.spacer {
	width: 100%;
	display: flex;
	justify-content: center;
}

#html_header.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px !important;
	padding: 0 38px 0 42px;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	z-index: 1001;
	background: white;
	max-width: 1600px;
	border: none;
}

#html_header .left,
.right,
.nav_container {
	display: flex;
	align-items: center;
}

#html_header .left {
	width: 39%;
}

#html_header .right {
	justify-content: flex-end;
	width: 60%;
}

#html_header .logo {
	margin-right: 24px;
	width: 108px;
}

#html_header .user {
	margin-left: 10px;
	width: 14px;
	filter: invert(6%) sepia(21%) saturate(14%) hue-rotate(314deg) brightness(18%) contrast(88%);
}

#html_header .nav_container {
	justify-content: flex-end;
	width: 100%;
	position: relative;
}

#html_header .navigation {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end;
	padding: 6px;
	padding-top: 10px;
	width: 100%;
}

#html_header .navigation a,
#html_header .navigation button {
	line-height: 35px;
	margin: 0;
	padding: 0;
	color: #41474D;
	font-family: 'Work Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 15px;
	background: none;
	text-align: left;
	border: none;
	cursor: pointer;
}

#html_header .mobile_nav_container,
#html_header .locations_dropdown {
	opacity: 0.01;
}

#html_header .mobile_nav_container {
	position: absolute;
}

#html_header .locations_dropdown {
	position: absolute;
	top: 60px;
	display: flex;
	flex-wrap: wrap;
	background: white;
	box-shadow: 0 4px 13px hsla(169, 6%, 63%, .36);
	border-radius: 4px;
	padding: 22px 32px;
	flex-direction: row;
	width: 600px;
	justify-content: space-between;
}

#html_header .locations_dropdown .column {
	display: flex;
	flex-direction: column;
}

#html_header .locations_dropdown .city {
	font-family: 'Work Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 34px;
	color: #41474D;
	text-decoration: none;
}

#html_header a.contact {
	background: #00927C;
	border-radius: 4px;
	color: white;
	padding: 0px 11px;
	margin-left: 17px;
}

#html_header a:not(.contact) {
	margin-left: 28px;
}

@media (max-width: 763px) {
	#html_header.header {
		padding: 0 20px 0 16px;
	}

	#html_header .navigation a,
	.navigation button {
		font-size: 14px;
	}

	#html_header a:not(.contact) {
		margin-left: 17px;
	}
}

@media (max-width: 650px) {
	#html_header .left {
		width: 20%;
	}

	#html_header .right {
		width: 80%;
	}
}

@media (max-width: 530px) {
	#html_header .navigation a:not(.contact),
	.navigation button {
		opacity: 0.01;
	}
}