.search-cont {
	--font-family-body: var(--font-body);
	--search-icon: var(--sw-text-color);
	border: 1px solid rgba(20, 54, 16, 0.25);
	border-radius: 5px;
}

.headerbox-search-form {
	display: flex;
	width: 100%;
	align-items: center;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 42px;
	margin: 0;
	border-radius: 0;
	text-indent: 10px;
	font-family: var(--font-family-body);
	font-size: var(--text-base);
	font-weight: 700;
	line-height: var(--leading-none);
	padding: 0;
	background: transparent;
}

.headerbox-search-form input[type="search"]::placeholder {
	opacity: 1;
	font-family: var(--font-family-body);
	font-size: var(--text-base);
	font-weight: 700;
	line-height: var(--leading-none);
}

.headerbox-search-form button {
	width: 36px;
	height: 36px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background: url(/includes/public/assets/shared/search-mobile.svg);
	color: var(--sw-text-color);
	margin-right: 10px;
}

.headerbox-search-form button i {
	color: var(--sw-text-color);
}

.headerbox-search-form button:hover {
	background-color: transparent;
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--sw-text-color);
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
		border: none;
	}

	.search-cont .search-button {
		width: 41px;
		height: 41px;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button i {
		display: none;
	}

	.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;
		align-items: flex-end;
		pointer-events: none;
		position: absolute;
		right: calc(100% + var(--space-2));
		top: 0;
		width: 506px;
		height: calc(100% - 5px);
		z-index: 25;
		transition: opacity var(--transition-appendix-med);
		border-bottom: 1px solid var(--white);
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form input[type="search"] {
		height: 30px;
		text-indent: 6px;
		font-size: var(--text-lg);
		font-weight: 600;
		color: var(--white);
	}
	
	.headerbox-search-form input[type="search"]::placeholder {
		font-size: var(--text-lg);
		font-weight: 600;
		color: var(--white);
	}

	.headerbox-search-form button {
		display: none;
		width: 40px;
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button {
		display: block;
	}

	.search-cont .search-button:focus-visible {
		outline-color: var(--sw-light-focus-color);
	}
}

/* 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);
	}
}