.headerbox-search-form {
	display: flex;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: 16px;
	text-indent: 5px;
	border: none;
	color: #000;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 16px;
	color: #000;
}
.headerbox-search-form button:hover,
.headerbox-search-form button {
	width: 40px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: #FFF;
	border: none;
	color: #444444
}
.headerbox-search-form button i {
	color: #000;
}
.search-cont .search-button {
	display: none;
	background-color: transparent;
}

@media screen and (min-width: 1024px) {
	.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: 0;
		top: 55px;
		width: 336px;
		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: 40px;
		height: 100%;
		padding: 0;
		margin: 0;
		background-color: #FFF;
		color: #000;
	}

	.search-cont .search-button {
		display: block;
	}
}
@media screen and (max-width: 1024px) {
	.headerbox-search-form {
		height: 100%;
		font-size: 16px;
		color: #000;
	}
	.headerbox-search-form input[type="search"]::placeholder {
		font-size: 16px;
		color: #000;
	}
	.search-cont {
		flex-grow: 1;
		margin-right: 10px;
	}
	.headerbox-search-form button {
		font-size: 21px;
	}
}