.headerbox-search-form {
	display: flex;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	font-family: "CB Sans W00 Regular", sans-serif;
	margin: 0;
	font-size: 15px;
	text-indent: 5px;

	box-shadow: none;
	border: none;
}
.headerbox-search-form input[type="search"]:focus {
	box-shadow: none;
	border: none;
}
.headerbox-search-form input[type="search"]::placeholder {
	color: #34a7e3;
	font-size: 15px;
}

.headerbox-search-form button {
	width: 40px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: #FFF;
}

.headerbox-search-form button:hover {
	background-color: #FFF;
}
.headerbox-search-form button i {
	color: #34a7e3;
}
.headerbox-search-form button:focus {
	background-color: #FFF;
	outline: 1px dashed #34a7e3;
}

.search-cont .search-button {
	display: none;
}

@media screen and (min-width: 1024px) {
	.search-cont {
		position: relative;
	}

	.search-cont .search-button {
		width: 37.5px;
		height: 35px;
		padding: 0;
		margin: 0 8px 0 0;
		color: #FFF;
		background-color: transparent;
	}

	.search-cont .search-button:focus {
		outline: 1px dashed #FFF;	
	}
	.search-cont .search-button.active{
		background-color: #21343a;
		color: rgba(255, 255, 255, 0.2);
	}
	.search-cont .search-button.active:hover{
		background-color: #000;
		color: #818181;
	}

	.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 .headerbox-search-form input[type="search"] {
		width: 100%;
		height: 100%;
		font-family: "CB Sans W00 Regular", sans-serif;
		margin: 0;
		font-size: 15px;
		text-indent: 5px;
		color: #818181;
		box-shadow: none;
		border: none;
	}

	.search-cont .headerbox-search-form input[type="search"]::placeholder {
		color: #818181;
		font-size: 15px;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form button {
		width: 37.5px;
		height: 35px;
		padding: 0;
		margin: 0;
		background-color: #ffb602;
	}
	.headerbox-search-form button:hover {
		background-color: #008fda;
	}
	.headerbox-search-form button:focus {
		outline: 1px dashed #FFF;
	}

	.headerbox-search-form button i {
		color: #21343a;
	}
	.headerbox-search-form button:hover i {
		color: #FFF;
	}
	.search-cont .search-button {
		display: block;
	}
}