/*Search Inventory*/
.search {
	position: relative;
	float: left;
	width: 100%;
	color: #fff;
	margin: 20px 0px;
}
.search-title{
	float:left; 
	padding: 5px 0;
}


/*Placeholder Text*/
::-webkit-input-placeholder {
   color: #fff;
}
:-moz-placeholder { 
   color: #fff;
}
::-moz-placeholder {  
   color: #fff;
}
:-ms-input-placeholder {  
   color: #fff;
}


.search:before {
	position: absolute;
	right: 0;
	width: auto;
	height: auto;
	font-family: 'FontAwesome';
	content: '\f002';
	text-align: center;
	color: #fff;
	-webkit-font-smoothing: subpixel-antialiased;
	font-smooth: always;
	padding: 10px 0px 6px 0px;
	box-sizing: border-box;
	font-size: 12px;
}
.search input[type=text]{
	width: 100%;
	height: auto;
	background: none;
	border-bottom: 1px solid #fff !important;
	border: 0px;
	padding: 10px 0px 6px 0px;
	color: #fff;
	box-sizing: border-box;
	font-size: 16px;
}
.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: 2px solid #fff !important;
	border: 0px;
	outline: none;
}
/*Search Inventory - END*/