/* Gmap Responsive Styles */
/* start with mobile as the default style and scale up */
h1 {
	display: none;
}

#map_locations {
	box-sizing: border-box;
	position: relative;
}
#map_locations * {
	box-sizing: border-box;
}

#map_locations h1 {
	display: block;
	font-size: 2rem;
}

#map_locations .bg-green {
	background-color: rgb(46 126 55);
}

#loc_map_wrapper, #loc_stores_wrapper {
	background-color: #eeeeee;
	padding: .4em;
	width: 100%;
	float: left;
}

#map {
	color: #000000;
	min-height: 18em;
}

#loc_header {
	background-color: #cccccc;
	color: #000000;
	width: 100%;
	overflow: hidden;
	padding: 10px;
	vertical-align: top;
	margin: 0;
}

#loc_header label {
	display: none;
}

.gmap_form .left, .gmap_form .right {
	width: 100%;
}

.gmap_form .left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.gmap_form .right {
	display: grid;
}

#loc_header .form_row {
	display: flex;
	flex-direction: column;
	margin-bottom: 0.4rem;
	width: 100%;
}

#loc_header .form_row.radius_row p {
	display: block;
	margin-right: auto;
}

#loc_header .form_row.radius_row {
	flex-direction: row;
	padding: 0.5rem 0;
}

#loc_header .form_row.button_row {
	gap: 0.5rem;
}

#loc_header input[type="text"], #loc_header select {
	width: 100%;
	height: 100%;
	padding: 0.6rem 1rem;
	background-color: #fff;
}

#loc_header input[type="radio"] {
	margin-bottom: 0.15rem;
	margin-right: 0.2rem;
}

#loc_header .button {
  border-radius: 0;
	width: 100%;
}


#pagination {
	background-color: #ccc;
	padding: .5em 0;
}

#pagination .found {
	float: left;
	padding: 0.8rem;
}

.loc_paging .count {
	float: right;
	padding: 0.8rem;
}

.loc_paging .pages {
	clear: both;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.loc_paging .pages i {
	display: block;
}

.loc_paging .pages a { 
	background-color: #000; 
	color: #fff;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease;
	border: 1px solid transparent;
}

.loc_paging .pages a:hover, .loc_paging .pages a:active, .loc_paging .pages a.current {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
}

.loc_paging .pages i {
	display: flex;
	align-items: flex-end;
}


#loc_stores_wrapper {

}

#loc_stores {
	background-color: #ffffff;
	color: #000000;
	height: auto;
	overflow: auto;
	padding: .4em;
}

#loc_stores .store {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	cursor: pointer;
}

#loc_stores .store .icon,
#loc_stores .store .iconhover,
#loc_stores .store .noicon {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMTYgMEMxMC40NzcgMCA2IDQuNDc3IDYgMTBDNiAxNy41IDE2IDMyIDE2IDMyQzE2IDMyIDI2IDE3LjUgMjYgMTBDMjYgNC40NzcgMjEuNTIzIDAgMTYgMFoiIGZpbGw9IiNFNzRDM0MiLz4KICA8Y2lyY2xlIGN4PSIxNiIgY3k9IjEwIiByPSI0IiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=");
  background-size: contain;
  background-repeat: no-repeat;
	margin-top: 0.4rem;
}

#loc_stores .store .iconhover {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMTYgMEMxMC40NzcgMCA2IDQuNDc3IDYgMTBDNiAxNy41IDE2IDMyIDE2IDMyQzE2IDMyIDI2IDE3LjUgMjYgMTBDMjYgNC40NzcgMjEuNTIzIDAgMTYgMFoiIGZpbGw9IiMzNDk4REIiLz4KICA8Y2lyY2xlIGN4PSIxNiIgY3k9IjEwIiByPSI0IiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=");
}

#loc_stores .store .noicon {
	background-image: none;
	background-color: transparent;
}

#loc_stores .store .name {
	text-transform: uppercase;
}

#loc_stores address {
	font-style: italic;
}

a.map_link {
	text-decoration: underline;
}

/* device is greater than or equal to 768 */
@media all and (min-width: 768px) {
	.gmap_form {
		display: flex;
		flex-direction: row;
		gap: 1rem;
	}

	.gmap_form .left, .gmap_form .right {
		width: 50%;
	}

	#loc_map_wrapper, #loc_stores_wrapper {
		width: 50%;
	}

	#map, #loc_stores {
		height: 22em;
	}

	#loc_header label {
		display: block;
	}

	#loc_header input[type="text"], #loc_header select {
		display: block;
	}

	#loc_header .radius {
		display: block;
	}

	#loc_header .form_row.button_row {
		align-self: flex-end;
		flex-direction: row;
	}

}
@media all and (min-width: 800px) {
	#map, #loc_stores {
		height: 30em;
	}
}
@media all and (min-width: 830px) {
	#loc_header .radius {
		display: inline-block;
		margin-right: 10px;
	}
}

/* device is greater than or equal to 1024 */
@media all and (min-width: 1024px) {
	#map, #loc_stores {
		height: 40em;
	}
}


