/*Search Inventory*/
.search {
	position: relative;
	float: right;
	width: 250px;
	height: 100%;
}
.search-title{float:left; padding: 5px 0;}

.search:before {
	position: absolute;
	right: 0;
	width: auto;
	height: auto;
	font-family: 'FontAwesome';
	content: '\f002';
	text-align: center;
	color: #000;
	-webkit-font-smoothing: subpixel-antialiased;
	font-smooth: always;
	padding: 10px 10px 6px 0px;
	box-sizing: border-box;
	font-size: 12px;
}
.search input[type=text]{
	width: 100%;
	height: auto;
	background: #e3e3e3;
	border: 0px;
	padding: 10px 0px 6px 10px;
	color: #000;
	box-sizing: border-box;
	font-size: 10px;
}

/*Styles for placeholder text*/
.search ::-webkit-input-placeholder {
   color: #000;
}
.search :-moz-placeholder { 
   color: #000;
}
.search ::-moz-placeholder {  
   color: #000;
}
.search :-ms-input-placeholder {  
   color: #000;
}

.searchButton { /*This is what is clicked to cause action*/
	position: absolute;
	top: 0;
	right: 0;
	width: auto;
	height: auto;
	opacity: 0;
	cursor: pointer;
}
#form .search input {
	width: 100%;
	padding: 5px 10px;
	border:1px solid #DFDFDF;
	margin: 5px 0 15px;
	height: 30px;
	border-radius: 5px;
	box-sizing: border-box;
}

/*Styles once user clicks*/
.search textarea:focus, .search input:focus{
	border-bottom: 1px solid #fff !important;
	border: 0px;
	outline: none;
}
/*Search Inventory - END*/