.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--white);
	--seach-input-icon-bg: var(--grey-1e);
	--seach-input-icon-bg-hover: var(--grey-1e);
	display: flex;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: 12px;
	text-indent: var(--space-1);
	font-family: var(--font-museo-cond-900);
	background: var(--grey-1e);
	text-transform: uppercase;
	padding: 8px 10px;
	letter-spacing: 1px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 12px;
	color: var(--white);
}

.headerbox-search-form button {
	width: 40px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: var(--seach-input-icon-bg);
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.headerbox-search-form button:hover {
	background-color: var(--seach-input-icon-bg-hover);
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--white);
}

.search-cont .search-button:hover {
	text-decoration: none;
}

::-webkit-search-cancel-button {
	display: none;
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
	}

	.search-cont .search-button {
		width: 40px;
		height: 30px;
		padding: 0;
		margin: 0;
		color:  var(--off-black);
	}

	.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: 225px;
		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;
		display: none;
	}

	.search-cont .search-button {
		display: block;
	}

	.headerbox-search-form input[type="search"] {
	    background: var(--grey-ea);
	    padding: 8px 10px;
	    letter-spacing: 1px;
	    color: var(--off-black);
	    border-top-right-radius: 3px;
	    border-bottom-right-radius: 3px;
    }

    .headerbox-search-form input[type="search"]::placeholder {
	    color: var(--off-black);
	}
}