/* ------ */
/* GENERAL STYLES - NOT necessary for search */
/* ----- */
html, body{
	background-color:#000;
	color:#fff;
	font-family: 'Roboto', sans-serif;
	font-size:16px;
	line-height:1.375em;
	padding:10px 30px;
}
/* ------ */
/* SEARCH */
/* ----- */
#searchContainer {  /*  can change item header color here */
	margin-bottom: 20px;
}
#searchContainer input {
	font-size: 16px;
	line-height:1.22222em;
	outline:none;
	padding:5px;
}
#searchContainer h1 {
	font-size: 28px;
	line-height:1.25em;
}
#search{
	width:90%;
}
.searchresults {
	margin-bottom:170px;
	text-align: left;
}
.searchresults li {
	border-bottom: 1px solid #878787;
	display: inline-block;
	font-size: 10pt;
	list-style-type: none;
	margin:-5px 0 0 -20px; /* results indent */
	min-width:300px;
	padding: 5px 5px 5px 0;
	overflow: hidden;
	transition: background 0.5s ease;
	width: 90%;
}
.searchresults li:first-child {
	margin-top:0px;
}
.searchresults li:hover {
 	 background: #1d1f20;  /*  changes li colors on hover  */
 	 color: #ddd;
	 cursor: pointer;
}
.searchresults li img { /* image thumbnails */
	float: left;
	padding: 0 10px 0 0;
	transition: all 250ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
	width: 150px;
}
.searchresults li:hover img { /* image thumbnails on hover*/
	transform: scale(1.05);
	transform-origin: center center;
}
.searchresults h2 {
	font-size: 18px;
	line-height:1.22222em;
	margin: 3px 0 0 0;
}
.searchresults p{
	color:rgba(103, 103, 103, 1);
}
.searchresults a{
	text-decoration: none;
}
#update{  /* results container */
	max-height:100vh;
	overflow-y:scroll;
}
