.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--gray-100);
	--seach-input-icon-bg: var(--primary-color-800);
	--seach-input-icon-bg-hover: var(--primary-color-600);

	display: flex;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: var(--text-base);
	font-family: var(--font-family-body);
	background: transparent;
	color: var(--off-white-smoke);
	padding: 1px 0;
}

.headerbox-search-form input[type="search" i]::-webkit-search-cancel-button {
	display: none;
}


.headerbox-search-form input[type="search"]::placeholder {
	font-size: var(--text-base);
	color: var(--off-white-smoke);
}

.headerbox-search-form button {
	width: 40px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: transparent;
	display: flex;
	justify-content: flex-end;
}

.headerbox-search-form button:hover {
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}

.search-cont .desktop {
	display: none;
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		width: auto;
		gap: 17px;
		top: -3px;
	}

	.search-cont .search-button {
		width: 100px;
		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;
		font-weight: 400;
		font-family: var(--font-display);
		font-size: 24px;
	}

	.search-cont .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		right: 100%;
		top: 0;
		height: 100%;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
		background-color: var(--gray-80);
		border-radius: 15px 2px;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
		order: 1;
		width: 645px;
		height: 45px;
		position: static;
	}

	.headerbox-search-form button {
		width: 50px;
		height: 100%;
		padding: 0;
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.search-cont .search-button {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.search-cont .desktop {
		display: block;
	}

	.search-cont .search-button .search-label {
		font-size: 24px;
		font-weight: 600;
		font-family: var(--font-display);
	}

	.search-cont .search-button.active .search-label {
		display: none;
	}

	.search-cont .search-button img {
		min-width: 20px;
		height: 20px;
		position: relative;
		top: 2px;
	}

	.search-cont .search-button.active {
		justify-content: flex-end;
		align-items: flex-end;
		line-height: 1;
		margin-right: 15px;
	}

    .headerbox-search-form input[type="search"]::placeholder,
	.headerbox-search-form input[type="search"] {
		font-size: 24px;
		font-weight: 400;
		font-family: var(--font-display);
		padding-left: 10px;
	}
}