.search-cont .search-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobile-nav .search-cont .search-label {
	display: inline-block;
	padding-right: 10px;
	color: #585858;
	font-size: 21px;
	font-family: 'Bevan';
	text-transform: uppercase;
}

.mobile-nav .search-cont .search-button-close {
	display: none;
}

.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);
	--search-accent: #f2b124;
	position: relative;
	display: flex;
	flex: 1;
	background-color: #212121;
}

.mobile-nav .headerbox-search-form {
	background-color: transparent;
}

.headerbox-search-form label {
	display: inline-block;
	padding-right: 15px;
	color: #585858;
	font-size: 28px;
	font-family: 'Bevan';
	text-transform: uppercase;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	margin: 0;
	color: var(--white);
	font-size: var(--text-base);
	font-family: var(--font-family-body);
	text-indent: var(--space-1);
	background-color: transparent;
	border-bottom: 2px solid #585858;
	line-height: 1;
	font-weight: normal;
	padding-left: 0;
}

.headerbox-search-form input[type="search"]::placeholder {
	color: var(--white);
	font-size: var(--text-base);
	font-weight: normal;
}

.headerbox-search-form button[type="submit"] {
	margin: 0;
	padding: 0;
	padding-right: 4px;
	width: 40px;
	color: var(--orange);
	text-align: right;
	border-bottom: 2px solid #585858;
}

.headerbox-search-form button i {
	color: inherit;
}

.headerbox-search-form button:hover {
	background-color: transparent;
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}

@media screen and (min-width: 64em) {
	.search-cont .search-button {
		width: 40px;
		height: 40px;
		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 {
		position: absolute;
		left: 0;
		top: 0;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		padding: 0px 20px;
		width: 100%;
		height: 100%;
		opacity: 0;
		pointer-events: none;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form input[type="search"] {
		height: 28px;
		width: 250px;
		padding-left: 0;
		padding-bottom: 0;
		font-size: 18px;
		line-height: 1;
	}

	.headerbox-search-form input[type="search"]::placeholder {
		font-size: 18px;
		line-height: 1;
	}

	.headerbox-search-form button {
		width: 40px;
		padding: 0;
		margin: 0;
		height: 28px;
	}

	.search-cont .search-button {
		display: inline-flex;
		justify-content: space-between;
		align-items: center;
		width: auto;
		font-family: 'closeone';
		font-size: 18px;
	}

	.search-cont .search-button span {
		position: relative;
		top: 2px;
	}

	.search-cont .search-button i {
		padding-right: 5px;
	}
	
	.search-cont .search-button-close {
		color: #585858;
		font-size: 18px;
		border-bottom: 2px solid transparent;
		margin-left: 10px;
	}
}