/** Shopify CDN: Minification failed

Line 22:13 Unexpected "{"
Line 22:22 Expected ":"

**/
.mm-section {
  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.mm-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
}
.mm-section-{{ section.id }} .mm-btn-secondary {
  background: #2c4295;
  color: white;
  padding: 5px 15px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  margin-top: 15px;
}

/* MAP */
#mm-map {
  width: 100%;
  height: 600px;
  border-radius: 6px;
}
.mapboxgl-ctrl-bottom-left, .mapboxgl-ctrl-bottom-right, .mapboxgl-ctrl-top-left, .mapboxgl-ctrl-top-right {
  z-index: 1;
}
@media(min-width:768px) {
  #mm-map {
    position: sticky;
    top: 100px;
  } 
}

/* PLACES */
.mm-places-wrapper {
  display: flex;
  flex-direction: column;
}
.mm-places-wrapper > h3 {
  font-size: 18px;
}
#mm-map-places {
  border: solid 1px #e5e5e5;
  border-radius: 4px;
  padding: 2rem;
  overflow-y: scroll;
  flex-grow: 1;
}
.mm-map-place-card {
  border: 1px solid black;
  margin-bottom: 8px;
}
.mm-map-place-card {
  border: solid 1px #f5f5f5;
  border-radius: 6px;
  padding: 20px;
  cursor: pointer;
  transition: .3s;
}
.mm-map-place-card.selected {
  border: solid 2px #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.mm-map-place-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.mm-map-place-card p[data-place-name] {
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
}
.mm-map-place-card p[data-place-address] {
  margin: 0;
  font-weight: 300 !important;
  font-style: italic;
}

/* POPUP */
.mm-map-popup-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}
.mm-map-popup-wrapper.mm-visible {
  opacity: 1;
  pointer-events: auto;
}
.mm-map-popup-filter {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(3px);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
}
.mm-map-popup {
  max-width: 450px;
  background: white;
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  position: relative;
  top: 40px;
  transition: .3s;
  z-index: 9999;
}
.mm-map-popup-wrapper.mm-visible .mm-map-popup {
  top: 0;
}
.mm-map-popup-close-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  width: 20px;
  cursor: pointer;
}
.mm-map-popup-close-tag svg {
  width: 20px;
  width: 20px;
}

@media(max-width:768px) {
  .mm-section {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .mm-map-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }

  /* MAP */
  #mm-map {
    height: 350px;
    margin-left: -2rem;
    width: calc(100% + 4rem);
  }
  .mapboxgl-ctrl-geocoder--input {
    padding: 6px 20px 6px 45px;
    font-size: 14px;
  }

  /* PLACES */
  
  #mm-map-places {
    border: none;
    padding: 0;
  }
  .mm-places-wrapper {
    max-height: 400px;
  }
}