.headerbox-search-form {
	display: flex;
	margin-bottom: 10px;
}

.headerbox-search-form input[type="search"],
.headerbox-search-form input[type="search"]:focus {
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: 15px;
	text-indent: 0;
	background-color: #18314b;
	box-shadow: none;
    border: 0;
	border-bottom: 3px solid #30465d;
	color: #7f8d9c;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
	font-size: 20px;
	padding: 0;
}

.headerbox-search-form input[type="search"]::placeholder {
	color: #7f8d9c;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.headerbox-search-form button,
.headerbox-search-form button:focus {
	width: 40px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: #18314b;
	color: #7f8d9c;
	border-bottom: 3px solid #30465d;
	display: flex;
    justify-content: flex-end;
}
.headerbox-search-form button i {
	color: #7f8d9c;
	font-size: 20px;
	padding-bottom: 4px;
}
.headerbox-search-form button:hover {
	background-color: #18314b;
}

@media screen and (min-width: 1024px) {
	.headerbox-search-form input[type="search"],
	.headerbox-search-form input[type="search"]:focus {
		background-color: #0b2640;
		padding-bottom: 10px;
		border-bottom: 5px solid hsla(0, 0%, 100%, 0.05);
		font-size: 22px;
		line-height: 1em;
		font-weight: 500;
	}
	.headerbox-search-form button,
	.headerbox-search-form button:focus {
		background-color: #0b2640;
		padding-bottom: 10px;
		border-bottom: 5px solid hsla(0, 0%, 100%, 0.05);
	}
	.headerbox-search-form input[type="search"]::placeholder {
		font-size: 22px;
		line-height: 1em;
		font-weight: 500;
	}
	.search-cont {
		position: relative;
	}

	.search-cont .search-button {
		width: 40px;
		height: 40px;
		padding: 0;
		margin: 0;
		display: none;
	}

	.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 {
		display: flex;
		margin-bottom: 20px;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

}