.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--white);
	--seach-input-icon-bg: transparent;
	--seach-input-icon-bg-hover: transparent;

	display: flex;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	text-transform: uppercase;
	color: var(--white);
	font-size: 15px;
	text-indent: 8px;
	font-family: var(--font-family-body);
	background: var(--seach-input-icon-bg);
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: var(--text-base);
	color: var(--white);
	font-size: 15px;
}

.headerbox-search-form button {
	 width: 35px;
    font-size: 16px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: var(--seach-input-icon-bg);
}

.headerbox-search-form button:hover {
	background-color: var(--seach-input-icon-bg-hover);
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--white);
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
		padding-right: 25px;
	}
	.search-cont.active {
		background-color: var(--light-blue);
	}
	.search-cont .search-button {
		width: 40px;
		height: 35px;
		padding: 0;
		margin: 0;
		font-size: 11px;
	}

	.search-cont .search-button.active {
		font-size: 18px;
	}

	.headerbox-search-form input[type="search"] {
		width: 68%;
	}

	.search-cont .search-button:focus,
	.headerbox-search-form input[type="search"]:focus,
	.headerbox-search-form button:focus {
		outline: 1px dashed var(--white);
	}

	.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;
		background-color: var(--light-blue);
		pointer-events: none;
		position: absolute;
		right: 100%;
		top: 0;
		width: 229px;
		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;
		height: 35px;
	}
}