.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--gray-100);
	--seach-input-icon-bg: var(--primary-color-800);
	--seach-input-icon-bg-hover: var(--primary-color-600);

	display: flex;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	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-size: var(--text-base);
}

.headerbox-search-form button {
	width: 42px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: var(--orange);
}
.headerbox-search-form button i.fa-inverse.fa-search  {
	color: #fff;
}
.headerbox-search-form button:hover {
	background-color: var(--orange);
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}
.search-cont .desktop-label {
	display: none;
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
	}
	.search-cont .desktop-label {
		display: block;
	}
	.search-cont .mobile-label {
		display: none;
	}
	.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;
		width: 51px;
		border: 1px solid var(--light-blue);
		margin-left: var(--space-5);
		padding-top: 14px;
		font-size: 18px;
		opacity: 0.5;
	}

	.search-cont .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		right: 100%;
		top: 0;
		width: 240px;
		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: 51px;
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button {
		display: contents;
		font-weight: 500;
	}
}