
/*nav buttons for state filtering*/
#map-states-filter-btns {
	width: 100%;
}

#map-states-filter-btns .states-btns-container {
	/*list-style-type: none;*/
	padding: 0; 
	margin: 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
}

#map-states-filter-btns .states-btns-container li {
	/*list-style-type: none;*/
}

#map-states-filter-btns .states-btns-container a {
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	display: block;
	padding: .5rem 1rem;
	color: white;
}

#map-states-filter-btns .states-btns-container a:hover {
	background-color: rgba(255, 255, 255, 0.3);
	color: white;
}

/* MAP */
#map-bucket {
	margin-bottom: 2rem;
}

#map {
	border: 1px solid #e2e2e2;
	background-color: #f5f5f5;
	width: 100%;
	height: 500px;
}

/*** Responsive Styles Tablet Only ***/
@media all and (min-width: 768px) and (max-width: 980px) {
 
}
 
/*** Responsive Styles Smartphone Only ***/
@media all and (max-width: 767px) {
	
	#map-states-filter-btns .states-btns-container {
		-webkit-flex-flow: column wrap;
		flex-flow: column wrap;
		padding: 0;
	}
	
	#map-states-filter-btns .states-btns-container a { 
		padding: .5rem 1rem;
		border-top: 1px solid rgba(255,255,255,0.3); 
		border-bottom: 1px solid rgba(0,0,0,0.1); 
	}
	
	#map-states-filter-btns .states-btns-container li:last-of-type a {
		border-bottom: none;
	}
 
}
 
/*** Responsive Styles Smartphone Portrait ***/
@media all and (max-width: 479px) {
 
}


/*ALERT MESSAGE*/
.locations-display-message {
	font-size: 1em;
	color: #000;
	background-color: #ffec9e;
	border: 2px solid #ffcc00;
	text-align: center;
	padding: .5rem .5rem;
}

/*INFO WINDOW*/

.store-content-infowindow {
	font-size: .9rem;
	padding-bottom: .5rem;
}

.store-content-infowindow a:first-child {
	font-size: 1rem;
	line-height: 1.2rem;
	display: block;
}

.store-content-infowindow a {
	margin-left: 0;
	font-size: .9rem;
	line-height: 1.3rem;
	display: block;
}

























