.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--gray-100);
	--seach-input-icon-bg: var(--blue);
	--seach-input-icon-bg-hover: var(--blue);

	display: flex;
	align-items: baseline;
	border-bottom: 2px solid var(--grey-alt-1);
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: 14px;
	text-indent: var(--space-1);
	font-family: var(--font-family-body);
	color: var(--grey-alt-2);
	background-color: transparent;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 14px;
	color: var(--grey-alt-2);
}

.headerbox-search-form button {
	width: 40px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: var(--seach-input-icon-bg);
}

.headerbox-search-form button i {
	font-size: 10px;
}

.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;
	}

	.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.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form button {
		width: 36px;
		height: 36px;
		border-radius: var(--rounded-full);
		padding: 0;
		margin: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.headerbox-search-form button i {
		font-size: 13px;
	}
}

@media screen and (min-width: 64em) {
	.headerbox-search-form {
		margin-bottom: 24px;
		padding-bottom: 8px;
	}
}

@media screen and (min-width: 90em) {
	.headerbox-search-form input[type="search"] {
		font-size: var(--text-base);
	}

	.headerbox-search-form input[type="search"]::placeholder {
		font-size: var(--text-base);
	}
}