.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--black);
	--seach-input-icon-bg: blue;
	--seach-input-icon-bg-hover: transparent;

	display: flex;
	align-items: baseline;
	border-bottom: 1px solid var(--black);
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: 18px;
	font-family: var(--font-family-body);
	color: var(--black);
	background-color: transparent;
	border: none;
	padding-bottom: 10px;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 18px;
	color: var(--black);
	padding-bottom: 5px;
	margin-bottom: 5px;
}

.headerbox-search-form button {
	width: 40px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: transparent;
}

.headerbox-search-form button i {
	font-size: 18px;
	color: var(--black);
}

.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;
	}

	.headerbox-search-form input[type="search"]::placeholder,
	.headerbox-search-form input[type="search"] {
		font-size: 30px;
		padding-bottom: 0;
	}

	.headerbox-search-form button i {
		font-size: 30px;
	}
}