.headerbox-search-form {
	--font-family-body: "gill-sans-nova";
	--search-icon: var(--black);
	--seach-input-icon-bg: transparent;
	--search-font-sm: 14px;
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	margin: 0;
}

.headerbox-search-form > label {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	margin: 0;
	opacity: 0;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: var(--search-font-sm);
	text-indent: var(--space-1);
	font-family: var(--font-family-body);
	background: var(--black);
	text-align: center;
	color: white;
	text-transform: uppercase;
	border: none;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: var(--search-font-sm);
	color: white;
	text-transform: uppercase;
}

.headerbox-search-form button {
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: white;
	border-radius: 100%;
	color: var(--black);
	font-size: var(--text-sm);
}

@media (max-width: 64em) {
	.headerbox-search-form button {
		width: 20px;
		height: 20px;
		font-size: 9px;
	}
}

.headerbox-search-form button i { color: inherit; }

.headerbox-search-form button:hover {
	background-color: var(--seach-input-icon-bg-hover);
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
		padding: 4px;
	}

	.search-cont .search-button {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button .close {
		display: none;
	}

	.search-cont.active .search-button .open {
		display: none;
	}

	.search-cont.active {
		background-color: var(--aqua);
	}

	.search-cont.active .search-button .close {
		display: block;
	}

	.search-cont .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		right: 100%;
		top: 0;
		width: 130px;
		height: 100%;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form button {
		display: none;
		width: 40px;
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button {
		display: block;
	}

	.headerbox-search-form input[type="search"] {
		background-color: var(--aqua);
		text-transform: none;
		font-style: italic;
		text-align: left;
		padding-left: var(--space-1);
		outline: none;
	}

	.headerbox-search-form input[type="search"]::placeholder {
		text-transform: none;
		font-style: italic;
	}

	input[type="search"]::-webkit-search-decoration,
	input[type="search"]::-webkit-search-cancel-button,
	input[type="search"]::-webkit-search-results-button,
	input[type="search"]::-webkit-search-results-decoration { display: none; }

}