/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
/* Optional: Makes the sample page fill the window. */

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	color: #333;
	font-size: 16px;
	box-sizing: border-box;
}

* {
	box-sizing: inherit;	
}

#map {		
	width: calc(100% - 300px);
	float: left;
}

#store-list {
	width: 300px;
	height: 100%;
	float: left;
	background-color: #F7F7F7;
	padding: 20px;	
	overflow: auto;		
}

.store-list-option {
	/*border-top: 1px solid #999;*/
	border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 12px;
	font-weight: 400;			
}

.selected-store {
	display: block;
}
.hidden-store {
	display: none;
}

.store-list-option h3 {
	margin: 0;
	font-weight: 700;
	font-size: 15px;
}
.store-list-option address {
	margin: 10px 0 0;
	font-weight: 400;
}
.store-list-option h4 {
	margin: 0;
	font-weight: 400;
}


.store-list-option:hover,
.store-list-option.active {
	background-color: #444;
	color: #FFF;
	box-shadow: 2px 2px 0 #ddd;
}

#soab-sl-wrap {	
	

}

.soab-sl-toolbar {
	width: 100%;
	padding: 20px;	
	border-bottom: 1px solid #EFEFEF;
	
	display: flex;
	flex-direction: row;
}

.soab-sl-toolbar .options-wrap {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	background-color: #f7f7f7;
	padding: 10px 20px;
	border-radius: 3px;
}

.soab-sl-toolbar > .spacer {
	width: 20px;
}

.soab-sl-toolbar .options-wrap > .spacer {
	width: 10px;
}

/*.soab-sl-toolbar-border {
	
}*/