.headerbox-search-form {
	display: flex;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	border: 0;
	font-size: 15px;
	text-indent: 5px;
	padding-right: 20px;
	position: relative;
	left: 15px;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 15px;
}

.headerbox-search-form button {
	width: 35px;
	height: 35px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	border-radius: 50%;
	background-color: #6e6d3c;
	font-size: 10px;
	position: relative;
	right: 0px;
	border: 2px solid #fff;
}
.headerbox-search-form button:focus {
	background-color: #6e6d3c;
}
.headerbox-search-form button:hover {
	background-color: #474627;
}

.search-cont .search-button {
	display: none;
}

@media screen and (min-width: 1024px) {
	.search-cont {
		position: relative;
	}

	.search-cont .search-button {
		width: 35px;
		height: 35px;
		padding: 0;
		margin: 0;
		font-size: 12px;
		background-color: transparent;
		border: 2px solid #fff;
		border-radius: 50%;
		transition: left 0.2s ease-in-out;
		position: relative;
		left: 0;
	}
	.search-cont .search-button:focus {
		background-color: transparent;
	}
	.search-cont .search-button:hover {
		background-color: #474627;
	}
	.search-cont.active .search-button {
		left: 0px;
	}

	.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: 70px;
		top: 0;
		width: 260px;
		height: 100%;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.search-cont .search-button {
		display: block;
	}
}
