.headerbox-search-form {
	display: flex;
	position: relative;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
    height: 100%;
    margin: 0;
	font-size: 14px;
	font-family: ff-tisa-sans-web-pro, sans-serif;
	font-weight: 400;
	font-style: italic;
    text-indent: 5px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.5);
    box-shadow: none;
    color: #fff;
    padding: 0;
}

.headerbox-search-form input[type="search"]:focus {
	background: transparent;
	border: none;
    box-shadow: none;
	border-bottom: 1px solid rgba(255,255,255,.5);
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 15px;
	color: #fff;
}

.headerbox-search-form button {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: transparent;
}

.headerbox-search-form button:hover,
.headerbox-search-form button:focus {
	background-color: transparent;
}

.search-cont .search-button {
	display: none;
}

@media (min-width: 64em) {
	.search-cont {
		position: relative;
	}

	.search-cont .search-button {
		position: relative;
		width: 60px;
		height: 60px;
		padding: 0;
		margin: 0;
		background-color: var(--Orange);
		font-size: 20px;
		margin-left: 20px;
	}

	.search-cont .search-button .close {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(150%,-50%);
		background-color: var(--Blue);
		width: 20px;
		height: 20px;
		border-radius: 50%;
		font-size: 12px;
		align-items: center;
		justify-content: center;
		display: none;
	}

	.search-cont.active .search-button .open {
		display: none;
	}

	.search-cont.active .search-button .close {
		display: flex;
	}

	.search-cont .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		right: 0;
		top: 0;
		width: 450px;
		height: 100%;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
		background-color: var(--Orange);
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
		padding: 10px 20px;
	}

	.headerbox-search-form input[type="search"] {
		border-bottom: 2px solid rgba(255,255,255,.5);
	}

	.headerbox-search-form button {
		width: 60px;
		height: 60px;
		padding: 0;
		margin: 0;
		background-color: transparent;
		font-size: 20px;
		margin-left: 20px;
	}

	.headerbox-search-form button:hover,
	.headerbox-search-form button:focus {
		background-color: transparent;
	}

	.search-cont .search-button {
		display: block;
	}
}