.search-cont {
	border-bottom: 2px solid var(--Cyan);
}
.headerbox-search-form {
	display: flex;
}
.search-cont.active .headerbox-search-form {
	border-bottom: 1px solid var(--color-gold);
}
.headerbox-search-form input[type="search"],
.headerbox-search-form input[type="search"]:focus {
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: 15px;
	text-indent: 5px;
	border: none;
	background: transparent;
	box-shadow: none;
	color: #fff;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-family:'Inter', sans-serif;
	font-size: 15px;
	color: #fff;
}

.headerbox-search-form button {
	width: 15px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background: transparent;
}

.headerbox-search-form button:hover,
.headerbox-search-form button:focus {
	background: transparent;
}
.headerbox-search-form button i {
	color: var(--Cyan);
	float: left;
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--color-gold);
}

@media screen and (min-width: 1024px) {
	.search-cont {
		border-bottom: none;
	}
	.search-cont {
		position: absolute;
		left: 40px;
		top: -90px;
	}

	.search-cont .search-button {
		width: 40px;
		height: 40px;
		padding: 0;
		margin: 0;
	}

	.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;
		left: 100%;
		top: 0;
		width: 240px;
		height: 100%;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
	}

	.search-cont .headerbox-search-form:after {
	  content: '';
	  position: absolute;
	  height: 2px;
	  width: 94%;
	  bottom: -21px;
	  background-color: var(--Cyan);
}

	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form button {
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button {
		display: block;
	}
}
