.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--gray-100);
	--seach-input-icon-bg: var(--primary-color-800);
	--seach-input-icon-bg-hover: var(--primary-color-600);
	
	display: flex;
	height: 45px;
}
.search-cont {
	min-height: 45px;
	min-width: 571px;
}
.headerbox-search-form h2 {
	white-space: nowrap;
    font-size: 20px;
    margin-right: 17px;
	color: #003863;
}
@media screen and (min-width: 1300px) {
	.search-cont {
		min-width: 705px;
	}
	.headerbox-search-form h2 {
		font-size: var(--text-2xl);
		margin-right: 27px;
		letter-spacing: .02em;
	}
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: 18px;
	text-indent: var(--space-5);
	font-family: var(--font-family-body);
	color: var(--dark-blue);
	font-weight: 500;
}
.headerbox-search-form input[type="search"]::-webkit-search-decoration,
.headerbox-search-form input[type="search"]::-webkit-search-cancel-button,
.headerbox-search-form input[type="search"]::-webkit-search-results-button,
.headerbox-search-form input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance:none;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-weight: 100;
	color: var(--light-blue);
}

.headerbox-search-form button {
	width: 47px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: #003863;
	z-index: 1;
}
.headerbox-search-form button i {
    font-size: var(--text-xl);
}

.headerbox-search-form button:hover {
	background-color: #003863;
}

.search-cont .search-button {
	display: none;
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
	}

	.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.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form button {
		width: 47px;
		height: 100%;
		padding: 0;
		margin: 0;
	}
}