.headerbox-search-form {
	display: flex; 
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: 14px;
	margin-left: 20px;
	margin-right: 15px;
	text-indent: 0;
	background-color: #def1f8;
	border: none;
	border-bottom: 1px solid rgba(39, 59, 86, 0.25);
	padding-top: 0;
	padding-left: 0;
	padding-bottom: 0;
	vertical-align: 10px;
	color: #273b56;
	box-shadow: none;
}

.headerbox-search-form input[type="search"]:focus {
	font-size: 14px;
	font-family: 'Spectral', serif;
	font-style: italic;
	background-color: #def1f8;
	box-shadow: none;
	color: #273b56;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 14px;
	font-family: 'Spectral', serif;
	font-style: italic;
	color: #273b56;
	text-indent: 0;
	padding-left: 0;
}

.headerbox-search-form button {
	width: 40px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	display: none;
}

.search-cont .search-button {
	display: none;
}

@media screen and (min-width: 1024px) {
	.search-cont {
		position: relative;
	}

	.search-cont .search-button {
		width: 40px;
		height: 40px;
		padding: 0;
		margin: 0;
		color: #00132c;
		background-color: transparent;
	}

	.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: 0;
		width: 321px;
		height: 80px;
		z-index: 0;
		transition: opacity 200ms ease-in-out;
		background-color: #def1f8;
		display: flex;
		justify-content: flex-start;
		padding: 0 20px 0 0;
		align-items: flex-end;
	}

	.headerbox-search-form input[type="search"] {
		margin: 0;
		padding: 0;
		height: 30px;
		margin-bottom: 18px;
		box-shadow: none;
		order: 1;
		width: 80%;
		left: 0;
		/* background-color: red; */
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form button {
		width: 40px;
		height: 65px;
		padding: 0;
		margin: 0;
		display: inline;
		background-color: transparent;
	}

	.headerbox-search-form button i {
		color: rgb(39, 59, 86);
	}

	.search-cont .search-button {
		display: block;
		order: 3;
		align-self: baseline;
	}

	.search-cont .search-button i {
		vertical-align: -2px;
	}
}