.headerbox-search-form {
	display: flex;
    align-items: center;
    justify-content: center;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	max-width: 320px;
	height: 100%;
	margin: 0;
	font-size: 15px;
	letter-spacing: 0.6px;
	line-height: 15px;
	height: 20px;
	text-indent: 5px;
	border: none;
	border-bottom: 1px solid #353533;
	padding: 0;
	text-indent: 0;
	background-color: transparent;
	box-shadow: none;
	font-family: "Karla", sans-serif;
}

.headerbox-search-form input[type="search"]:focus {
	border-bottom: 1px solid #353533;
	box-shadow: none;
	background-color: transparent;
}

.headerbox-search-form input[type="search"]:visited{
	box-shadow: none;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 15px;
	letter-spacing: 0.6px;
	color: #9a9a99;
	font-style: italic;

}

.headerbox-search-form input[type="search"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  	font-size: 15px;
  	letter-spacing: 0.6px;
	color: #9a9a99;
	font-style: italic;
}
.headerbox-search-form input[type="search"]::-moz-placeholder { /* Firefox 19+ */
  	font-size: 15px;
  	letter-spacing: 0.6px;
	color: #9a9a99;
	font-style: italic;
}
.headerbox-search-form input[type="search"]:-ms-input-placeholder { /* IE 10+ */
  	font-size: 15px;
  	letter-spacing: 0.6px;
	color: #9a9a99;
	font-style: italic;
}
.headerbox-search-form input[type="search"]:-moz-placeholder { /* Firefox 18- */
  	font-size: 15px;
  	letter-spacing: 0.6px;
	color: #9a9a99;
	font-style: italic;
}

.headerbox-search-form button {
	width: 30px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: transparent;
}

.search-cont .search-button:hover,
.headerbox-search-form button:hover,
.search-cont .search-button:visited,
.headerbox-search-form button:visited{
	background-color: transparent;
}

.headerbox-search-form button i,
.headerbox-search-form button:hover i {
	color: #353533;
}

@media screen and (min-width: 1135px) {
	.search-cont {
		position: relative;
	}

	.search-cont .search-button,
	.headerbox-search-form button {
		width: 38px;
	    height: 38px;
	    display: inline-block;
	    text-align: center;
	    padding: 0;
	    margin: 0;
	    background-color: transparent;
	    color: #353533;

	}
	.search-cont .search-button i,
	.headerbox-search-form button i {
		font-size: 15.5px;
	}
	.headerbox-search-form button{
		width: 24px;
	}

	.search-cont .search-button:focus,
	.headerbox-search-form button:focus {
		outline: 1px dashed #353533;

	}
	.search-cont .search-button:hover,
	.headerbox-search-form button:hover,
	.search-cont .search-button:visited,
	.headerbox-search-form button:visited{
		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: inline-block;
	}

	.search-cont .headerbox-search-form {
		opacity: 0;
	    pointer-events: none;
	    position: absolute;
	    right: calc(100% + -15px);
	    top: 0;
	    width: 294px;
	    height: 100%;
	    z-index: 25;
	    transition: opacity 200ms ease-in-out;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

}