.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-input-color: #727272;
	--seach-input-icon-bg: transparent;
	--seach-input-icon-bg-hover: transparent;

	display: flex;
	align-items: center;
	height: 100%;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0 3px;
	font-family: var(--font-display-agenda);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: var(--tracking-wider);
	color: var(--search-input-color);
	background-color: transparent;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 15px;
	letter-spacing: var(--tracking-wider);
	color: var(--search-input-color);
	opacity: 1;
}

.search-cont .headerbox-search-form .title {
	font-family: var(--font-display-agenda);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	color: var(--dark-blue);
	text-align: left;
	text-transform: uppercase;
	letter-spacing: var(--tracking-wider);
}

.search-cont .headerbox-search-form .controls {
	display: flex;
	border-bottom: 2px solid var(--icon-blue);
	width: 100%;
	flex-shrink: 0.8;
}

.headerbox-search-form button {
	width: 40px;
	padding: 0;
	margin: 0;
	background-color: var(--seach-input-icon-bg);
	font-size: 15px;
}

.headerbox-search-form button:hover {
	background-color: var(--seach-input-icon-bg-hover);
}

.headerbox-search-form button i {
	color: var(--search-input-color);
}

.search-cont .search-button {
	background-color: #284e72;
	border: 2px solid #fff;
	border-radius: 50%;
	font-size: 14px;
	color: #fff;
	display: none;
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
		z-index: 1;
	}

	.search-cont .search-button {
		width: 35px;
		height: 35px;
		padding: 0;
		margin: 0;
		z-index: 1;
		display: block;
	}

	.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::before {
		opacity: 0;
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		height: 400px;
		width: 407px;
		background: url(/includes/public/assets/shared/search-open.svg) no-repeat;
		background-size: 450px;
		background-position: 20px -65px;
		transform: translate(60px, -25px);
		z-index: -1;
		transition: visibility 0s, opacity 250ms ease-in-out;
		visibility: hidden;
	}

	.search-cont.active::before {
		opacity: 1;
		visibility: visible;
	}

	.search-cont .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		right: -35px;
		top: 70px;
		width: 330px;
		height: 100%;
		z-index: 2;
		transition: visibility 0s, opacity 150ms ease-in-out;
		flex-direction: column;
	}

	.search-cont .headerbox-search-form .title {
		font-size: 24px;
		line-height: inherit;
		text-align: center;
		margin-bottom: var(--space-9);
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.search-cont .headerbox-search-form .controls {
		border-bottom-width: 3px;
	}

	.headerbox-search-form input[type="search"] {
		padding: var(--space-2) 3px;
		font-size: 21px;
	}

	.headerbox-search-form input[type="search"]::placeholder {
		font-size: 21px;
	}

	.headerbox-search-form button {
		width: 40px;
		height: 100%;
		padding: 0;
		margin: 0;
		font-size: 21px;
	}

	.search-cont .search-button {
		display: block;
	}
}