.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--red-bf);
	--seach-input-icon-bg: var(--white);
	--seach-input-icon-bg-hover: var(--white);

	display: flex;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 44px;
	margin: 0;
	font-size: var(--text-base);
	text-indent: var(--space-5);
	font-family: var(--font-family-body);
}

@media screen and (min-width: 40em) {
	.headerbox-search-form input[type="search"] {
		height: 50px;
	}
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: var(--text-base);
	color: var(--black);
	font-size: var(--text-base);
}

.headerbox-search-form input[type="search"]:focus {
	outline-offset: -2px;
	z-index: 1;
}


.headerbox-search-form button {
	width: 40px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: var(--seach-input-icon-bg);
}

.headerbox-search-form button:hover {
	background-color: var(--seach-input-icon-bg-hover);
}

.headerbox-search-form button i.fa-search {
	color: var(--search-icon);
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}


@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
	}

	.search-cont .search-button {
		width: 40px;
		height: 40px;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button .close {
		display: none;
	}

	.search-cont.active .search-button .open {
		display: none;
	}

	.search-cont.active .search-button .close {
		display: block;
	}

	.search-cont .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		right: 32%;
		top: 40px;
		width: 338px;
		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 {
		width: 40px;
		height: 50px;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button {
		display: block;
		color: var(--white);
		margin-bottom: 2px;
	}
}