:root {
	--custom-primary: #170B04;

}
h1, h2, h3, h4, h5, h6 {
	color: var(--custom-primary)!important
}
.header-search-form {
	border: 0px;
}
.search-heading {
	display: none !important;
}
/* Overlay styles */
.search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	justify-content: center;
	z-index: 999999;
	opacity: 0;
	transition: opacity 0.3s ease;
	align-items: center;
	margin-top: 0;
}
.search-overlay .header-search-button {
	position: absolute;
	transform: translateY(-50%);
	background: none;
	border-left: 1px solid black;
	color: #333;
	cursor: pointer;
	top: 49%;
	right: 1px;
	font-size: 30px;
}
.search-overlay .header-search-form {
	width: 80%;
	max-width: 800px;
	position: relative;
	transform: translateY(-50px);
	transition: 0.2s ease-in !important;
}
.search-overlay .header-search-form {
	max-width: 800px;
}
.search-overlay .header-search-input {
	width: 100%;
	padding: 15px 50px 15px 20px;
	font-size: 24px;
	background: white;
	border: none;
	border-radius: 4px;
	outline: none;
}
.search-overlay-close {
	position: absolute;
	top: 40px;
	right: 40px;
	color: white;
	font-size: 30px;
	cursor: pointer;
	border: none;
	background: none;
	padding: 10px;
}
.search-overlay-close {
	top: -30px;
	right: 8px;
	font-size: 70px;
}
.search-overlay-close:hover {
	transform: rotate(90deg);
	transition: 0.2s ease-in !important;
}
.search-overlay.active {
	opacity: 1;
	visibility: visible;
	display: flex;
}
.search-overlay.active .header-search-form {
	transform: translateY(0);
}
button.header-search-button {
	height: 62px;
}
