.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--blue);
	--seach-input-icon-bg: var(--primary-color-800);
	--seach-input-icon-bg-hover: var(--primary-color-600);
	--border-radius: 15px;

	display: flex;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	padding: 7px 0 5px;
	margin: 0;
	font-size: 15px;
	text-indent: 15px;
	font-family: var(--font-family-body);
	background: var(--off-white-alt);
	color:  var(--gray-dark);
	border-top-left-radius: var(--border-radius);
	border-bottom-left-radius: var(--border-radius);
	font-weight: var(--font-weight-medium);
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 15px;
	color:  var(--gray-dark);
	font-weight: var(--font-weight-medium);
}

.headerbox-search-form button {
	width: 42px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: var(--off-white-alt);
	border-top-right-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	padding-right: 8px;
	display:  flex;
	justify-content: center;
	align-items: center;
}

.headerbox-search-form button i {
	color: var(--blue);
	font-size: 19px
}

@media (hover: hover) {
	.headerbox-search-form button:hover {
		background-color: var(--off-white-alt);
	}
}


.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 .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
		right: 100%;
		top: 0;
		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: 57px;
		padding: 0;
		margin: 0;
	}

	.headerbox-search-form input[type="search"] {
		text-indent: 22px;
		font-size: 19px;
		padding: 7px 0 6px;
	}

	.headerbox-search-form {
		--border-radius: 24px;
	}

	.headerbox-search-form input[type="search"]::placeholder {
		font-size: 19px;
	}

	.headerbox-search-form button i {
		font-size: 20px
	}
}