.headerbox-search-form {
	display: flex;
	border-bottom: 2px solid #FFF;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
    height: 100%;
    margin: 0;
    font-size: 17.88px;
    text-transform: uppercase;
    text-indent: 4px;
    border: none;
    box-shadow: none;
    background-color: transparent;
    color: #FFF;
    padding-left: 5px;
    padding-bottom: 5px;
}

.headerbox-search-form input[type="search"]:focus {
	border: none;
	box-shadow: none;
	background-color: transparent;
}

.headerbox-search-form input[type="search"]::placeholder {
	color: #FFF;
	font-size: 17.88px;
}

.headerbox-search-form button {
	width: auto;
	font-size: 14px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: transparent;
}

.headerbox-search-form button:focus {
	outline: 1px dashed #FFF;
	background-color: transparent;
}
.headerbox-search-form button:hover {
	background-color: transparent;
}

.search-cont .search-button {
	display: none;
}

@media screen and (min-width: 64em) {

	.search-cont .search-button {
		width: 43px;
		height: 43px;
		font-size: 18px;
		padding: 0;
		margin: 0;
		background-color: transparent;
		z-index: 1;
	}

	.search-cont .search-button:focus {
		outline: 1px dashed #FFF;
	}
	.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: calc(50% - 112px);
		transform: translateX(50%);
		top: 38px;
		width: 545px;
		height: 40px;
		z-index: 25;
		border-bottom: 2px solid #FFF;
		transition: opacity 200ms ease-in-out;
	}

	body.fixed-menu .search-cont .headerbox-search-form {
		top: 10px;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form input[type="search"] {
		text-indent: 4px;
		font-size: 24px;
	}

	.headerbox-search-form input[type="search"]::placeholder {
		font-size: 24px;
	}

	.headerbox-search-form button {
		font-size: 20px;
		width: auto;
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.headerbox-search-form button:focus {
		background-color: transparent;
		outline: 1px dashed #FFF;
	}
	.search-cont .search-button {
		display: block;
	}
}