.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--gray-100);
	--search-input-icon-bg: var(--primary-color-800);
	--search-input-icon-bg-hover: var(--primary-color-600);

	display: flex;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: var(--text-base);
	text-indent: var(--space-1);
	font-family: var(--font-family-body);
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: var(--text-base);
}

.headerbox-search-form button {
	width: 40px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
}

.headerbox-search-form button img {
	padding-right: 4px;
}

.headerbox-search-form button:hover {
	background-color: var(--search-input-icon-bg-hover);
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}

/* Hamburger Header styles */
.dropdown-nav-container .search-cont .headerbox-search-form {
	opacity: 1;
	position: static;
	pointer-events: all;
}

.dropdown-nav-container .search-cont .headerbox-search-form input[type="search"] {
	height: unset;
	padding: 10px 0 10px 16px;
	font-family: var(--font-freight-text);
	font-weight: var(--font-weight-normal);
	font-size: 16px;
	line-height: 1;
}

.dropdown-nav-container .nav .search-cont .search-button {
	display: none;
}

@media (min-width: 64em) {
	.dropdown-nav-container .search-cont .headerbox-search-form {
		width: 100%;
	}

	.headerbox-search-form {
		flex-direction: row-reverse;
	}

	.headerbox-search-form:after {
		content: 'Search';
		font-family: var(--font-freight-text);
		font-weight: bold;
		font-size: 50px;
		letter-spacing: 1.25px;
		font-style: italic;
		color: var(--white);
		margin-right: 30px;
	}

	.headerbox-search-form input[type="search"] {
		height: 42px;
		width: 288px;
		margin: auto 0;
		font-size: 14px;
		text-align: right;
	}

	.headerbox-search-form input[type="search"]::placeholder {
		font-size: 14px;
	}

	.headerbox-search-form button {
		width: 46px;
		height: 42px;
		margin: auto 0;
	}

	.headerbox-search-form button:hover {
		background-color: var(--white);
	}
}