/** Shopify CDN: Minification failed

Line 63:14 Expected identifier but found whitespace
Line 63:16 Unexpected "{"
Line 63:25 Expected ":"
Line 63:51 Expected ":"
Line 64:17 Expected identifier but found whitespace
Line 64:19 Unexpected "{"
Line 64:28 Expected ":"
Line 64:57 Expected ":"

**/
.store-locator {
  padding: 0;
}

.store-locator__title {
  text-align: center;
  margin-bottom: 4rem;
}

.store-locator__grid {
  gap: 3rem;
  margin-top: 2rem;
}

.store-locator__item {
  background: rgb(var(--color-background));
  border: 1px solid rgba(var(--color-foreground), 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
}

.store-locator__store-name {
  margin-bottom: 1.5rem;
  color: #B62B6E;
  font-size: 2.4rem;
}

.store-locator__details {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.store-locator__details > div {
  margin-bottom: 1rem;
}

.store-locator__map {
  width: 100%;
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.store-locator__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.section-store-locator-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

@media screen and (max-width: 749px) {
  .store-locator__grid {
    gap: 2rem;
  }
  
  .store-locator__item {
    padding: 1.5rem;
  }
}
