.search-cont {
	--font-family-body: var(
	--font-body);
	--search-icon: var(
	--gray-100);
	--search-input-icon-bg: var(
	--sw-key-color);
	--search-input-icon-bg-hover: var(
	--sw-key-color-hover);
	border-bottom: solid 1px var(--black-19);
}

.headerbox-search-form {
	display: flex;
	width: 250px;
	justify-content: space-between;
}

.headerbox-search-form input[type="search"] {
	height: 30px;
	margin: 0;
	font-size: var(--text-base);
	font-family: var(--font-family-body);
	background: transparent;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: var(--text-base);
}

.headerbox-search-form button {
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: transparent;
	color: var(--black-19);
}

.headerbox-search-form button i {
	color: var(--black-19);
}

.headerbox-search-form button:hover {
	background-color: var(--cream-fe);
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}

@media (min-width: 375px) {
	.headerbox-search-form {
	    display: flex;
	    width: 320px;
	    justify-content: space-between;
	}
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
		border-bottom: 0;
	}

	.search-cont .search-button {
		width: 30px;
		height: 30px;
		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 .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
		top: 71px;
		right: -50px;
		left: auto;
		position: absolute;
		background: var(--cream-fe);
		height: 91px;
		width: 625px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form button {
		width: 40px;
		display: flex;
		height: 20px;
		border-bottom: 1px solid var(--black-19);
		padding: 0;
		margin: 0;
		justify-content: flex-end;
		align-items: flex-start;
	}

	.headerbox-search-form input[type="search"] {
	    width: 490px;
	    height: 20px;
	    border-bottom: 1px solid;
	}

	.headerbox-search-form input[type="search"]::placeholder {
		font-size: 0.9375rem;
		letter-spacing: 0.5px
	}

	.search-cont .search-button {
		display: flex;
		background-color: var(--gray-300);
		border-radius: var(--rounded-circle);
		color: var(--black-19);
		justify-content: center;
		align-items: center;
	}
}

@media screen and (min-width: 90em) {
	.search-cont .headerbox-search-form {
		top: 76px;
	}
}

/* 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);
	}
}