/*<!-- Search Form CSS -->*/
/*Hide 'Search' on mobile, only show magnifying glass*/

.search-form .form-group {
	float : right !important ;
	transition : all 0.35s, border-radius 0s;
	width : 32px;
	height : 32px;
	background-color : #fff;
	box-shadow : 0 1px 1px rgb(0 0 0 / 0.075) inset;
	border-radius : 25px;
	border : #ccc solid 1px;
}
.search-form .form-group input.form-control {
	padding-right : 20px;
	border : none 0;
	background : transparent;
	box-shadow : none;
	display : block;
}
.search-form .form-group input.form-control::-webkit-input-placeholder {
	display : none;
}
.search-form .form-group input.form-control:-moz-placeholder {
	display : none;
}
.search-form .form-group input.form-control::-moz-placeholder {
	display : none;
}
.search-form .form-group input.form-control:-ms-input-placeholder {
	display : none;
}
.search-form .form-group:hover, .search-form .form-group.hover {
	width : 100%;
	border-radius : 4px 25px 25px 4px;
}
.search-form .form-group span.form-control-feedback {
	position : absolute;
	top : -1px;
	right : -2px;
	z-index : 2;
	display : block;
	width : 34px;
	height : 34px;
	line-height : 34px;
	text-align : center;
	color : #3596e0;
	left : initial;
	font-size : 14px;
}

@media only screen and (max-width : 808px) {
	.search-hide {
		display: none;
	}

}