.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--primary-color-100);
	--seach-input-icon-bg: var(--primary-color-100);
	--seach-input-icon-bg-hover: var(--primary-color-100);
	--search-border-bottom: var(--gray-ae);
	--close-btn-bg-color: var(--secondary-color-600);

	display: flex;
	border-bottom: 1px solid var(--search-border-bottom);
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0 0 6px 0;
	font-size: var(--text-base);
	font-family: var(--font-family-body);
	color: var(--gray-5e);
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: var(--text-base);
}

.headerbox-search-form button {
	width: 20px;
	padding: 0;
	margin: 0 0 6px 0;
	flex-shrink: 0;
	background-color: transparent;
}

.headerbox-search-form button i {
	color: var(--search-icon);
}

@media screen and (min-width: 64em) {
	.headerbox-search-form button i {
		color: var(--gray-100);
	}
}

.headerbox-search-form button:hover {
	background-color: transparent;
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}

@media screen and (min-width: 64em) {
	.headerbox-search-form {
		border-bottom: 2px solid var(--gray-100);
		margin-right: var(--space-6);
	}

	.headerbox-search-form input[type="search"] {
		background-color: transparent;
		/* text-indent: var(--space-1); */
		color: var(--gray-100);
	}

	.headerbox-search-form input[type="search"]:focus {
		outline: var(--gray-100) solid 1px;
		outline-offset: -2px;
	}

	.headerbox-search-form input[type="search"]::placeholder {
		color: var(--gray-100);
		font-size: 15px;
	}

	.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: 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;
		width: 700px;
	}

	.headerbox-search-form button {
		width: 20px;
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button {
		display: block;
	}

	.search-cont .search-button:focus {
		outline: var(--gray-100) solid 1px;
		outline-offset: -6px;
	}

	.search-cont .search-button.active .close-wrap {
		background-color: var(--secondary-color-100);
		padding: 6px;
		width: 25px;
		border-radius: 6px;
	}
}