/* Header Search Overlay 
*/
.hs-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	background: #fff;
	height: 80px;
	display: flex;
	align-items: center;
	padding: 0 24px;
	box-sizing: border-box;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.hs-overlay.is-open {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0);
}

.hs-overlay__inner {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 32px;
}


.hs-overlay__logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	text-decoration: none;
}

.hs-overlay__logo img {
	height: 40px;
	width: auto;
	display: block;
}


.hs-overlay__form {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
}

.hs-overlay__search-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	color: #9ca3af;
	width: 20px;
	height: 20px;
}

.hs-overlay__search-icon svg {
	width: 20px;
	height: 20px;
}

.hs-overlay__input {
	flex: 1;
	border: none !important;
	outline: none !important;
	background: transparent !important;
	font-family: inherit;
	font-size: 18px !important;
	color: #071739 !important;
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
	height: auto !important;
	line-height: 1.4;
	border-radius: 0 !important;
}

.hs-overlay__input::placeholder {
	color: #9ca3af;
}


.hs-overlay__close {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: transparent !important;
	border: none !important;
	color: #071739 !important;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	padding: 0 !important;
	box-shadow: none !important;
	opacity: 0.7;
	transition: opacity 0.15s ease;
}

.hs-overlay__close:hover {
	opacity: 1 !important;
	background: transparent !important;
	color: #071739 !important;
}


.hs-x-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 28px;
	line-height: 1;
	color: #071739;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	display: none;
}
