.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--gray-100);
	--seach-input-icon-bg: transparent;
	--seach-input-icon-bg-hover: var(--primary-color-600);

	display: flex;
	justify-content: space-between;
	border-bottom: 2px solid #8586bf;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	background: transparent;
}

.headerbox-search-form input[type="search"]::placeholder,
.headerbox-search-form input[type="search"] {
	font-size: 16px;
	font-family: var(--font-body);
	font-weight: var(--font-weight-bold);
	text-transform: uppercase;
	color: var(--white);
	letter-spacing: 0.19em; 
}

.headerbox-search-form button {
	width: 40px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: var(--seach-input-icon-bg);
}

.headerbox-search-form button i {
	color: #ed899f;
	transform: rotate(18deg);
	font-size: 21px;
	margin-bottom: 8px;
	margin-left: 15px;
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
	}

	.search-cont .search-button {
		width: 40px;
		height: 40px;
		padding: 0;
		margin: 0;
	}

	.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;
		align-items: baseline;
	}

	.headerbox-search-form button {
		width: 40px;
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.headerbox-search-form input[type="search"]::placeholder,
    .headerbox-search-form input[type="search"] {
	    font-weight: var(--font-weight-normal);
	    letter-spacing: 0.2em;
    }

	.headerbox-search-form button i {
		font-size: 26px;
	}

}

/* ICC Styles */
.icc .headerbox-search-form {
	border-color: #4295b4
}

.icc .headerbox-search-form button i {
	color: #f0c25a;
}