.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--white);
	--seach-input-icon-bg: var(--slate-gray);
	--seach-input-icon-bg-hover: var(--primary-color-600);
	display: flex;
	height: 100%;
}

.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);
	color: var(--white);
	background-color: var(--dark-teal);
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 16px;
	color: var(--white);
	font-weight: 500;
}

input[type="search" i]:enabled:read-write:-webkit-any(:focus, :hover)::-webkit-search-cancel-button {
 	display: none;
 }

.headerbox-search-form button {
	/* width: 40px; */
	padding: 6px 22px;
	margin: 0;
	flex-shrink: 0;
	background-color: var(--seach-input-icon-bg);
	border-radius: var(--rounded-full);
}


.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: flex;
		justify-content: center;
		align-items: center;
		background-color: rgba(229, 229, 229, 0.2);
		padding: 11px 22px;
		margin: 0;
		flex-shrink: 0;
		border-radius: var(--rounded-full);
		font-size: 15px;
	}

	.search-cont .search-button.active {
		margin-top: var(--space-2);
	}
}