.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(--search-input-icon-bg);
}

.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);
}

@media screen and (min-width: 64em) {
	.contentRender_name_plugins_search_headerbox {
		position: absolute;
		right: -18px;
		top: 27px;
	}

	.search-cont {
		position: absolute;
	}

	.search-cont .search-button {
		width: 28px;
		height: 28px;
		background-color: var(--orange);
		border-radius: 50%;
		font-size: 10px;
		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;
		position: absolute;
		right: 100%;
		top: 0;
		width: 487px;
		height: 28px;
		border-radius: 13.99px;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
		background-color: #d7d8d9;
	}

	.headerbox-search-form button {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 60px;
		height: 28px;
		padding: 0;
		margin: 0;
		background: #d7d8d9;
		position: absolute;
		left: 100px;
	}

	.headerbox-search-form button i {
		color: var(--blue-dark);
		font-size: 10px;
	}

	.search-cont .search-button {
		display: block;
		position: absolute;
		right: 0;
	}

	.search-cont .search-button.active {
		z-index: 25;
	}

	.headerbox-search-form input[type="search"] {
		background-color: #d7d8d9;
		font-size: 11px;
		width: 150px;
		text-indent: 15px;
		border-top-left-radius: 13.99px;
		border-bottom-left-radius: 13.99px;
	}

	.headerbox-search-form input[type="search"]::placeholder {
		font-size: 11px;
	}

	.headerbox-search-form input[type="search"]:focus {
		outline: none;
	}
}

/* Hamburger Header styles */
.panel-header.hamburger .search-cont .headerbox-search-form {
	opacity: 1;
	position: static;
	pointer-events: all;
}

.panel-header.hamburger .search-cont .headerbox-search-form input[type="search"] {
	height: unset;
}

.panel-header.hamburger .nav .search-cont .search-button {
	display: none;
}

@media (min-width: 64em) {
	.panel-header.hamburger .search-cont .headerbox-search-form {
		width: 100%;
	}

	.panel-header.hamburger .nav .search-cont .headerbox-search-form button {
		width: var(--space-12);
	}
}

/* Mobile nav */

.panel-header .mobile-nav .search-cont .headerbox-search-form {
	height: 49px;
	border-radius: 24.45px;
	border: 2px solid var(--white);
}

.panel-header .mobile-nav .search-cont .headerbox-search-form input[type="search"] {
	background-color: transparent;
	font-size: 17px;
	color: var(--white);
	text-indent: 20px;
}

.panel-header .mobile-nav .search-cont .headerbox-search-form input[type="search"]::-webkit-search-decoration,
.panel-header .mobile-nav .search-cont .headerbox-search-form input[type="search"]::-webkit-search-cancel-button,
.panel-header .mobile-nav .search-cont .headerbox-search-form input[type="search"]::-webkit-search-results-button,
.panel-header .mobile-nav .search-cont .headerbox-search-form input[type="search"]::-webkit-search-results-decoration { 
	display: none; 
}

.panel-header .mobile-nav .search-cont .headerbox-search-form button {
	border-radius: 50%;
	background-color: var(--white);
	width: 49px;
	height: 49px;
	position: relative;
	bottom: 2px;
}

.panel-header .mobile-nav .search-cont .headerbox-search-form i {
	color: var(--orange);
	font-size: 18.06px;
}