.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);

	display: none;
}

.headerbox-search-form {
	display: flex;
	display: flex;
    height: 100%;
    width: 100%;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: 0;
	font-size: 12px;
	font-weight: 400;
	text-indent: var(--space-1);
	font-family: var(--font-family-body);
	color: var(--black);
	background-color: #fff8f1;
}
.headerbox-search-form input[type="search"]:focus {
	outline: none;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: var(--text-base);
	color: var(--black);
}

.headerbox-search-form .bg {
	display: none;
	position: absolute;
    top: 0;
    right: 0;
    width: 120%;
    height: 100%;
	pointer-events: none;
}

@media (min-width: 64em) {
	.headerbox-search-form input[type="search"],
	.headerbox-search-form input[type="search"]::placeholder {
		color: #c8c3bd;
		font-size: 18px;
	}
	.headerbox-search-form .bg {
		display: block;
	}
	.headerbox-search-form .bg::after {
		content: '';
		position: absolute;
		top: 75%;
		right: 58px;
		height: 2px;
		width: 45%;
		background-color: #c8c3bd;
	}
}

.headerbox-search-form button {
	width: 53px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: var(--search-input-icon-bg);
	color: var(--gray-100);
}

.headerbox-search-form button:hover {
	background-color: var(--search-input-icon-bg);
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}

@media screen and (min-width: 64em) {
	.search-cont {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 53px;
		height: 100%;
		background-color: var(--black);
	}

	.search-cont .search-button {
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.sticky .search-cont .search-button {
		width: 52px;
		height: 88px;
		background: url(/includes/public/assets/shared/menu-search-icon.svg) center / contain no-repeat;
		background-size: 55%;
		outline: none;
	}
	.sticky .search-cont .search-button.active {
		width: 52px;
		height: 88px;
		background: transparent;
	}
	.sticky .search-cont .search-button.active .fa-times {
		opacity: 1;
	}
	.sticky .search-cont .search-button .fa-search{
		opacity: 0;
	}

	.search-cont .search-button .close {
		display: none;
	}

	.search-cont.active {
		display: block;
	}

	.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: 53px;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
	}

	.sticky .search-cont .headerbox-search-form {
		top: 88px;
		height: 44px;
	}


	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.sticky .search-cont.active .headerbox-search-form {
		width: 100vw;
	}

	.headerbox-search-form button {
		width: 53px;
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button {
		display: block;
		outline: none;
	}
}

@media screen and (min-width: 80em) {
	.sticky .search-cont.active .headerbox-search-form {
		width: 100vw;
	}
}

/* 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);
	}

	.headerbox-search-form input[type="search"] {
		padding-left: 43%;
	}
}