.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: 17px;
    font-family: var(--font-display);
    text-align: center;
    font-weight: 600;
	color: #333333b3;
	text-indent: 21px;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance:none;
}
.headerbox-search-form input[type="search"]:focus {
	outline: 1px dashed rgb(236 82 82);
}

.headerbox-search-form button {
	width: 52px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-image: -webkit-linear-gradient( 140deg, rgb(214,26,105) 0%, rgb(243,101,74) 99%);
	font-size: 19px;
	border-radius: 0 5px 5px 0;
}

.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 {
		right: 100%;
		width: 100%;
		height: 52px;
		z-index: 25;
		margin-top: 10px;
	}

	.headerbox-search-form button {
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button {
		display: block;
	}
}
