.search-cont {
	--font-family-body: var(--font-body);
	--search-icon: var(--white);
	--search-input-icon-bg: transparent;
	--search-input-icon-bg-hover: transparent;
}

.headerbox-search-form {
	display: flex;
	border-bottom: 1px solid var(--white);
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: 0;
	font-size: 0.9375rem;
	font-weight: 500;
	font-family: var(--font-family-body);
	color: var(--sw-light-text-color);
	background: transparent;
	padding: 0;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 0.9375rem;
	font-weight: 500;
	font-family: var(--font-family-body);
	color: var(--sw-light-text-color);
	opacity: 1;
}

.headerbox-search-form button {
	width: 12px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: var(--search-input-icon-bg);
	color: var(--white);
}

.headerbox-search-form button:hover {
	background-color: var(--search-input-icon-bg-hover);
}

.headerbox-search-form button i {
	color: var(--white);
	font-size: var(--text-xs);
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
	}

	.search-cont *:focus-visible {
		outline-color: var(--sw-light-focus-color);
	}

	.search-cont .search-button {
		width: 12px;
		height: 26px;
		border-bottom: 1px solid transparent;
		padding: 0;
		margin: 0;
		transition: border-color 200ms ease-in-out;
	}

	.search-cont .search-button i {
		font-size: var(--text-xs);
	}

	.search-cont .search-button .close {
		display: none;
	}

	.search-cont.active .search-button {
		border-color: var(--white);
	}

	.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: 100%;
		top: 0;
		width: 743px;
		height: 26px;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form input[type="search"],
	.headerbox-search-form input[type="search"]::placeholder {
		width: 168px;
		font-size: 0.9375rem;
		font-weight: 300;
		letter-spacing: 0.005em;
	}

	.headerbox-search-form input[type="search"]:focus-visible {
		outline: none;
	}

	.headerbox-search-form button {
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.headerbox-search-form button:focus-visible,
	.search-cont .search-button:focus-visible {
		outline-offset: 0;
	}

	.search-cont .search-button {
		display: block;
	}
}

@media (min-width: 90em) {
	.search-cont .headerbox-search-form {
		width: 804px;
	}
}

/* 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;
}

.dropdown-nav-container .nav .search-cont .search-button {
	display: none;
}

@media (min-width: 64em) {
	.dropdown-nav-container .search-cont .headerbox-search-form {
		width: 100%;
	}

	.dropdown-nav-container .nav .search-cont .headerbox-search-form button {
		width: var(--space-12);
	}
}