.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--white);
	--seach-input-icon-bg: var(--green);
	--seach-input-icon-bg-hover: var(--green);
	--search-border: var(--gray);
	--color-placeholder-text: var(--taupe);

	display: flex;
	border: 1px solid var(--search-border);

}

@media screen and (min-width: 64em) {
	.headerbox-search-form {
		border: none;
	}
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 48px;
	margin: 0;
	font-size: var(--text-base);
	text-indent: var(--space-1);
	font-family: var(--font-family-body);
}

.headerbox-search-form input[type="search"]::placeholder {
	font-family: var(--font-semibold);
	font-size: 15px;
	color: var(--color-placeholder-text);
	text-indent: var(--space-4);
}

@media screen and (min-width: 64em) {
	.headerbox-search-form input[type="search"]:focus {
		outline-offset: -3px;
		outline: 1px solid var(--gray);
	}
}

.headerbox-search-form button {
	width: 46px;
	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);
}

.search-cont .search-button {
	display: none;
	background: transparent;
}

@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: 26%;
		top: 37px;
		width: 350px;
		height: 100%;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
		background-color: var(--white);
		border: 1px solid var(--green);
		box-sizing: var(--shadow);
		height: 50px;
	}

	.headerbox-search-form button {
		width: 40px;
		height: 49px;
		padding: 0;
		margin: 0;
	}

	@media screen and (min-width: 64em) {
		.headerbox-search-form button {
			height: 45px;
			width: 45px;
			margin-top: 2px;
			margin-right: 2px;
		}
	}

	.search-cont .search-button {
		display: block;
		color: var(--orange);
	}

	@media screen and (min-width: 64em) {
		.search-cont .search-button:focus {
			outline-offset: -7px;
		}
	}

	.search-cont .search-button i {
		font-size: 13px;
	}

	.search-cont .search-button i.close {
		font-size: var(--text-lg);
	}
}