.search-cont .search-button {
	display: none;
	font-size: 16px;
	color: #f26831
}

.headerbox-search-form {
	display: flex;
	margin: 0px 10px 0 0;
	align-items: center;
}

.panel-header.theme-white .headerbox-search-form {
	flex-direction: row-reverse;
	background-color: var(--white);
	margin: unset;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
.panel-header.theme-white .headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.headerbox-search-form input[type="search"],
.headerbox-search-form input[type="search"]:focus {
	background-color: transparent;
	box-shadow: none;
	border: none;
	border-bottom: 2px solid white;
}

.headerbox-search-form input[type="search"],
.headerbox-search-form input[type="search"]::placeholder {
	color: white;
	font: 500 20px 'franklin-gothic-urw', sans-serif;
}
.panel-header.theme-white .headerbox-search-form input[type="search"],
.panel-header.theme-white .headerbox-search-form input[type="search"]::placeholder {
	color: var(--black);
	font: 400 18px 'franklin-gothic-urw', sans-serif;
	text-transform: capitalize;
	padding-left: 5px;
}

.headerbox-search-form button {
	font-size: 18px;
	padding: 10px;
	margin: 0;
	flex-shrink: 0;
	background-color: transparent;
}
.panel-header.theme-white .headerbox-search-form button {
	background-color: var(--orange);
	height: 40px;
	width: 40px;
	font-size: 15px;
}

.headerbox-search-form button:hover {
	background-color: transparent;
}

.headerbox-search-form button:focus {
	background-color: transparent;
	outline: 1px dashed white;
}

@media screen and (min-width: 1025px) {
	.search-cont {
		position: relative;
	}

	.search-cont .search-button {
		display: block;
		width: 40px;
		height: 40px;
		font-size: 14px;
		padding: 0;
		margin: 0;
		margin-bottom: 6px;
		background-color: transparent;
	}
	.panel-header.theme-white .search-cont .search-button {
		color: white;
		margin-bottom: unset;
		font-size: var(--text-base);
	}

	.search-cont-inner .search-button .close {
		display: none;
	}

	.search-cont-inner.active .search-button .open {
		display: none;
	}

	.search-cont-inner.active .search-button .close {
		display: block;
	}

	.search-cont .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		right: 100%;
		top: 0;
		width: 440px;
		height: 100%;
		z-index: 25;
		transition: opacity ease 0.5s 0.2s;
		margin: 0;
	}

	.search-cont .search-cont-inner.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
		transition: opacity ease 0.5s 1s;
	}

	.headerbox-search-form button {
		width: 40px;
		height: 100%;
		padding: 0;
		margin: 0;
	}
}

@media screen and (min-width: 1200px) {
	.search-cont .search-button {
		font-size: 30px;
		margin: 0;
	}
}