.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;
}

.root-panel.luxury .headerbox-search-form input[type="search"],
.root-panel.luxury .headerbox-search-form input[type="search"]::placeholder {
	color: black;
	font-family: var(--font-brandon);
	font-style: normal;
	background: #fff;
	padding: 3px;
}

.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;
}

.root-panel.luxury .headerbox-search-form button > i {
	display: none;
}

.root-panel.luxury .headerbox-search-form button::after {
	content: url(/includes/client_public/assets/shared/search.svg);
	width: 12px;
	height: 12px;
}

.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;
	}

	.root-panel.luxury .search-cont .search-button {
		background-color: transparent;
		width: 30px;
		height: 30px;
	}

	.root-panel.luxury .search-cont .search-button .fa-search {
		display: none;
	}

	.root-panel.luxury .search-cont .search-button::before {
		content: url(/includes/client_public/assets/shared/search-white.svg);
	}

	.root-panel.luxury.no-hero .search-cont .search-button::before {
		content: url(/includes/client_public/assets/shared/search.svg);
	}

	.root-panel.luxury .panel-header.sticky .search-cont .search-button::before {
		content: url(/includes/client_public/assets/shared/search.svg);
	}

	.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;
	}

	.root-panel.luxury .search-cont .search-button::after {
		content: url(/includes/client_public/assets/shared/times.svg);
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(100%,-50%);
		font-size: 14px;
		align-items: center;
		justify-content: center;
		display: none;
	}

	.root-panel.luxury .panel-header.sticky .search-cont .search-button::after,
	.root-panel.luxury.no-hero .panel-header .search-cont .search-button::after {
		content: url(/includes/client_public/assets/shared/times-black.svg);
	}

	.search-cont.active .search-button .open {
		display: none;
	}

	.search-cont.active .search-button .close {
		display: flex;
	}

	.root-panel.luxury .search-cont .search-button .close,
	.root-panel.luxury .search-cont.active .search-button .close {
		display: none;
	}

	.root-panel.luxury .search-cont.active .search-button::after {
		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);
	}

	.root-panel.luxury .search-cont .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		right: 0;
		top: 0;
		width: 400px;
		height: auto;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
		background-color: transparent;
	}

	.root-panel.luxury .search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
		padding: 0px;
	}

	.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;
	}
}