.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--gray-100);
	--seach-input-icon-bg: #bd4b47;
	--seach-input-icon-bg-hover: #bd4b47;

	display: flex;
	border-bottom: 3px solid white;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: 17.07px;
	text-indent: var(--space-1);
	font-family: var(--font-display);
	font-weight: var(--font-weight-light);
	background: transparent;
	padding-left: 15px;
	color: #dedfe1;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 17.07px;
	color: #dad9d9;
}

.headerbox-search-form button {
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: var(--seach-input-icon-bg);
	border-radius: 50%;
	position: relative;
	bottom: 5px;
}

.headerbox-search-form button i {
	font-size: 12px;
}

.headerbox-search-form button:hover {
	background-color: var(--seach-input-icon-bg-hover);
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
	}

	.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 {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		right: 100%;
		top: 0;
		width: 240px;
		height: 100%;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form button {
		width: 40px;
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button {
		display: block;
	}

	.search-cont .search-button i {
		font-size: 28px;
	}

	.search-cont .search-button .search-text {
		font-size: 10px;
		position: relative;
		left: 5px;
	}

	.panel-header .body-overlay .search-cont.active .fa-times.close,
	.panel-header .body-overlay .search-cont.active .search-text {
		display: none;
	}

	.panel-header .body-overlay .search-cont.active .headerbox-search-form {
		width: 400px;
		left: -180px;
	}

	.panel-header .body-overlay .search-cont.active .headerbox-search-form input[type="search"]::placeholder,
	.panel-header .body-overlay .search-cont.active .headerbox-search-form input[type="search"] {
		font-size: 20px;
		color: #dedfe1;
		padding-left: 2px;
	}

	.panel-header .body-overlay .search-cont.active .headerbox-search-form button {
		width: 51px;
		height: 51px;
		bottom: 22px;
		right: 15px;
	}

	.panel-header .body-overlay .search-cont.active .headerbox-search-form button i {
		font-size: 24px;
	}
}

@media(min-width: 80em) {
	.panel-header .body-overlay .search-cont.active .headerbox-search-form {
		width: 662px;
		left: -315px;
	}
}