/* disable highlighting selected field*/
*:focus {
	outline: 0;
}

html,
body,
#map-canvas {
	height: 100%;
	margin: 0;
	padding: 0;
	overflow:hidden;
}

.container-fluid {
	padding: 0;
	height: 100%;
}


/*Search Bar*/
.searchForm-wrapper {
	z-index: 100;
	position: fixed;
	top: 30px;
	left: 80px;
}

.search {
	position: relative;
	left: 8px;
	width: 247px;
	padding:8px 15px;
	background: white;
	border: 5px solid #c10;
	border-radius: 0px 0 0 0px;
	color: black;
	font-size: 15px;
}

.submit {
	position: relative;
	padding: 6px 15px;
	border: 7px solid #c10;
	border-radius: 0 0px 0px 0;
	background-color: #c10;
	color: #fff;
	font-size: 15px;
}

.submit:hover {
	background-color: #e00;
	border-color: #e00;
	color: white;
}


/*Search Lists*/
.searchedLists {
	box-shadow: 1px 3px 2px #888;
	z-index: 109;
	position: absolute;
	max-height: 70%;
	top: 60px;
	left: 88px;
	margin-left: 0;
	padding-left: 0;
	overflow-y: auto;
	overflow-x: hidden;
	background-color: white;
}

.searchedLists li {
	border-top: solid #eee;
	border-width: thin;
	margin-left: 10px;
	margin-right: 25px;
	width: 300px;
	height: 50px;
	padding: 5px;
	background-color: white;
}

.searchedLists li:hover {
	color: #fff;
	background-color: #f8f8f8;
}

.store-name {
	font-family: 'Roboto Condensed', sans-serif;
	color: #333;
	font-size: 16px;
}

.address {
	font-family: 'Roboto', sans-serif;
	color: #888;
	font-size: 12px;
}


/*scrollbar*/
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track-piece  {
	background-color: white;
}

::-webkit-scrollbar-thumb:vertical {
	height: 60px;
	background-color: #eee;
}


/*move search list to the bottom of the screen*/
@media (max-width: 800px) {
	.searchForm-wrapper {
		position: relative;
		width: 100%;
		top: 0;
		left: 0;
		white-space: nowrap;
		overflow: hidden;
	}

	.search {
		left: 0;
		border-radius: 0;
		-moz-appearance: none;
		-webkit-appearance: none;
		position: relative;
		height: 100%;
		width: 90%;
	}

	.submit {
		position: absolute;
		border-radius: 0;
		-moz-appearance: none;
		-webkit-appearance: none;
		width: 70px;
		right: 0;
		padding: 6px 0;
		height: 100%;
		border-right: 0;
		border-left: 0;
	}

	.searchedLists {
		width: 100%;
		height: 30%;
		top: 70%;
		left: 0;
		bottom: 0;
	}

	.searchedLists li {
		width: 100%;
		list-style-type: none;
	}
}
