/** Shopify CDN: Minification failed

Line 20:16 Expected identifier but found whitespace
Line 20:18 Unexpected "{"
Line 20:27 Expected ":"
Line 20:53 Expected ":"
Line 21:19 Expected identifier but found whitespace
Line 21:21 Unexpected "{"
Line 21:30 Expected ":"
Line 21:59 Expected ":"
Line 150:12 Unexpected "{"
Line 150:21 Expected ":"
... and 8 more hidden warnings

**/


/* CSS from section stylesheet tags */
.dealer-list-section {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .dealer-list-heading {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
  }

  .dealer-map-container {
    margin-bottom: 3rem;
  }

  .dealer-map {
    width: 100%;
    min-height: 400px;
  }

  .dealer-list-container {
    margin-top: 2rem;
  }

  .dealer-country-group {
    margin-bottom: 3rem;
  }

  .dealer-country-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #333;
  }

  .dealer-state-group {
    margin-bottom: 2rem;
  }

  .dealer-state-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #666;
  }

  .dealer-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .dealer-grid--1 {
    grid-template-columns: 1fr;
  }

  .dealer-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .dealer-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .dealer-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  @media screen and (max-width: 990px) {
    .dealer-grid--3,
    .dealer-grid--4 {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (max-width: 749px) {
    .dealer-grid--2,
    .dealer-grid--3,
    .dealer-grid--4 {
      grid-template-columns: 1fr;
    }
  }

  .dealer-card {
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .dealer-card-heading {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    padding-bottom: 0;
  }

  .dealer-card-divider {
    height: 1px;
    width: 100%;
    margin-bottom: 1rem;
    background-color: #333;
  }

  .dealer-card-body {
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .dealer-address {
    margin-bottom: 1rem;
    white-space: pre-line;
  }

  .dealer-website {
    margin-top: auto;
  }

  .dealer-website .button {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 1rem 2rem;
  }

  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }