.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.storemap-autocomplete-controls-grid, .storemap-banner-info-grid {
	align-items: center;
}

.storemap-autocomplete-wrap {
	position: relative;
	font-family: inherit;
	padding: 10px;
}

.storemap-autocomplete-controls {
	display: flex;
	gap: 8px;
}

.storemap-autocomplete-input-wrap {
	flex: 1;
	width: 100%;
}

.storemap-autocomplete-input {
	width: 100%;
}

.storemap-autocomplete-radius {
	padding: 10px 8px;
	font-size: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	outline: none;
}

.storemap-autocomplete-radius:focus {
	border-color: #4285f4;
	box-shadow: 0 0 0 2px rgba(66, 133, 244, .2);
}

.storemap-current-location {
	margin: 6px 0 0;
	font-size: 12px;
	color: #555;
}

.storemap-banner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	overflow: hidden;
}

.storemap-banner-esklep {
	order: 1;
}

.storemap-banner-drive {
	order: 2;
}

.storemap-banner-drive img,
.storemap-banner-esklep img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.storemap-banner-info {
	margin: 8px 0 0;
	font-size: 13px;
	color: #1a1a1a;
	text-align: center;
}

.storemap-notice {
	color: #b32d2e;
	font-style: italic;
}

.storemap-map-row {
	margin-top: 12px;
}

.storemap-legend {
	flex-basis: 50%;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #1a1a1a;
}

.storemap-legend img {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	object-fit: cover;
}

.storemap-near-me-button {
	margin-left: auto;
	padding: 8px 14px;
	font-size: 13px;
	color: #fff;
	background: #027935;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.storemap-near-me-button:hover {
	background: #025f2a;
}

.storemap-geolocation-notice {
	flex-basis: 50%;
	margin: 4px 0 0;
	font-size: 12px;
	color: #b32d2e;
	text-align: left;
}

.storemap-store-list {
	min-width: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	align-content: start;
}

.storemap-store-item {
	padding: 16px;
	border: 1px solid #027935;
	border-radius: 2px;
	cursor: pointer;
	transition: box-shadow .15s ease;
}

.storemap-store-item:hover {
	box-shadow: 0 2px 8px rgba(2, 121, 53, .15);
}

.storemap-store-item-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 12px;
}

.storemap-store-item-name {
	margin: 0;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: #027935;
	border-bottom: 2px solid #027935;
	padding-bottom: 4px;
	display: inline-block;
}

.storemap-store-item-logo {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.storemap-store-item-address,
.storemap-store-item-zipcity {
	margin: 0 0 2px;
	font-size: 13px;
	color: #1a1a1a;
}

.storemap-store-item-hours {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 10px 0 0;
	font-size: 13px;
	color: #1a1a1a;
}

.storemap-store-item-clock {
	display: inline-flex;
	color: #555;
}

.storemap-store-item-more {
	display: block;
	margin-top: 10px;
	font-size: 13px;
	color: #027935;
	text-decoration: none;
}

.storemap-store-item:hover .storemap-store-item-more {
	text-decoration: underline;
}

.storemap-store-list-empty {
	grid-column: 1 / -1;
	padding: 16px 12px;
	font-size: 13px;
	color: #888;
	text-align: center;
}

.storemap-infowindow {
	max-width: 240px;
	font-family: inherit;
}

.storemap-infowindow-title {
	margin: 0 0 4px;
	font-weight: 600;
	font-size: 14px;
	color: #1a1a1a;
}

.storemap-infowindow-address,
.storemap-infowindow-format {
	margin: 0 0 4px;
	font-size: 13px;
	color: #555;
}

.storemap-infowindow-row {
	font-size: 12px;
	color: #333;
	line-height: 1.4;
}

.storemap-infowindow-extra {
	margin: 6px 0 0;
	font-size: 12px;
	color: #555;
	font-style: italic;
}

.storemap-infowindow-link {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	color: #027935;
	text-decoration: none;
}

.storemap-infowindow-link:hover {
	text-decoration: underline;
}

.storemap-legend-2 {
	margin-top: 10px;
	font-size: 10px;
}

.storemap-map.grid-item {
    min-height: 500px;
}

@media screen and (max-width: 1200px) {
	
	.grid-2 {
		grid-template-columns: 1fr;
	}
	
}