.headerbox-search-form {
	display: flex;
}

.mobile-nav .headerbox-search-form {
	height: 50px;
	align-items: center;
	padding-left: 15px;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 24px;
	margin: 0;
	font-size: 18px;
	letter-spacing: 0.9px;
	font-weight: 600;
	text-transform: uppercase;
	text-indent: 0;
	padding: 0;
	background-color: transparent;
	border: none;
	box-shadow: none;
	color: #FFF;
}

.headerbox-search-form input[type="search"]::placeholder, 
.headerbox-search-form input[type="search"]:focus {
	font-size: 18px;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	color: #FFF;
	background-color: transparent;
	border: none;
	box-shadow: none;
}

.mobile-nav .headerbox-search-form input[type="search"] {
	border-bottom: 1px solid #59666e;
	margin-bottom: 6px;
	width: 83%;
}

.headerbox-search-form button {
	width: 30px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: transparent;
}

.headerbox-search-form button:hover {
	background-color: transparent;
}

.headerbox-search-form button:focus {
	outline: 1px dashed #59666e;
	background-color: transparent;

}
.search-cont .search-button {
	display: none;
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
	}

	.search-cont .search-button {
		width: 40px;
		height: 40px;
		padding: 0;
		margin: 0;
		background: transparent;
		font-size: 17px;
		z-index: 20;
	}

	.search-cont .search-button:hover {
		background-color: transparent;
	}
	.search-cont .search-button .close {
		display: none;
	}

	.search-cont.active .search-button .open {
		display: none;
	}

	.search-cont.active .search-button .close {
		display: block;
		font-size: 24px;
	}

	.search-cont .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		right: 0;
		top: 25px;
		width: calc(800px + (1137 - 800) * ((100vw - 1025px) / (1460 - 1025)));
		height: 100%;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
		border-bottom: 1px solid #FFF;
	}

	.search-cont .headerbox-search-form input[type="search"] {
		padding-bottom: 10px;
	    font-size: 24px;
	    font-weight: 600;
	    text-transform: uppercase;
	    letter-spacing: 1.2px;
	    height: 100%;
	    text-indent: 10px;
	}

	.search-cont .headerbox-search-form input[type="search"]::placeholder, 
	.search-cont .headerbox-search-form input[type="search"]:focus {
		font-size: 24px;
		letter-spacing: 1.2px;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form button {
		width: 30px;
	    height: 30px;
	    font-size: 19px;
	    padding: 0;
	    margin: 0;
	    background-color: transparent;
	}

	.headerbox-search-form button:hover {
		background-color: transparent;
	}

	.headerbox-search-form button:focus {
		outline: 1px dashed #FFF;
		background-color: transparent;
	}
	.search-cont .search-button {
		display: block;
	}
}

@media (min-width: 1460px) {
	.search-cont .headerbox-search-form {
		right: calc(0% - 26px);
		width: 1137px;
	}
}