.headerbox-search-form {
	display: flex;
	border-bottom: 2px solid #99b4bd;
}

.headerbox-search-form input[type="search"],
.headerbox-search-form input[type="search"]:focus {
	width: 100%;
	height: 100%;
	margin: 0;
	font-family: var(--acumin-pro);
	letter-spacing: 0.06em;
	font-size: 17px;
	color: #99b4bd;
	text-indent: 5px;
	background-color: transparent;
	box-shadow: none;
	border: none;
	padding: 2px 0 2px 5px;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 17px;
	color: #99b4bd;
}

.headerbox-search-form button {
	width: auto;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: transparent;
}

.headerbox-search-form button:hover {
	background-color: transparent;
}
.search-cont .search-button {
	display: none;
}

.mobile-nav .search-cont{
	padding: 10px 13px;
}
@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
	}

	.search-cont .search-button {
		display: flex;
		width: 16px;
		height: 21px;
		padding: 0;
		margin: 2px 0 0 12px;
		background-color: transparent;
		font-size: 15px;
		margin-left: 18px;
		position: relative;
    	z-index: 25;
	}

	.search-cont .search-button:focus {
		outline: 1px dashed #7896a1;
	}

	.headerbox-search-form input[type="search"],
	.headerbox-search-form input[type="search"]:focus,
	.headerbox-search-form input[type="search"]::placeholder{
		font-size: 17px;
		text-transform: lowercase;
		letter-spacing: 0.06em;
		font-weight: 600;
    	text-indent: 8px;
    	padding: 0px 0 4px;
	}

	.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: 3px;
		top: -2px;
		width: 389px;
		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: auto;
	    height: 100%;
	    margin: 1.5px 0 0px;
	    font-size: 14px;
	    display: flex;
	}

	.headerbox-search-form button:hover {
		background-color: transparent;
	}
}