/** Shopify CDN: Minification failed

Line 154:13 Expected identifier but found whitespace
Line 154:15 Unexpected "{"
Line 154:24 Expected ":"
Line 154:58 Expected ":"
Line 180:21 Expected identifier but found whitespace
Line 180:23 Unexpected "{"
Line 180:32 Expected ":"
Line 180:67 Expected ":"
Line 187:21 Expected identifier but found whitespace
Line 187:23 Unexpected "{"
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
.visit-us {
    position: relative;
  }

  .visit-us__container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .visit-us__header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
  }

  .visit-us__title-wrapper {
    flex: 0 0 var(--title-width);
  }

  .visit-us__search {
    flex: 1;
    position: relative;
  }

  .visit-us__search-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(var(--color-foreground), 0.1);
    border-radius: 0.4rem;
  }

  .visit-us__search-button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
  }

  .visit-us__blocks {
    flex: 1;
    max-height: 600px;
    overflow-y: auto;
    padding: 1.5rem;
    border-radius: 0.4rem;
  }

  .visit-us__blocks::-webkit-scrollbar {
    width: 6px;
  }

  .visit-us__blocks::-webkit-scrollbar-track {
    background: rgba(var(--color-foreground), 0.1);
  }

  .visit-us__blocks::-webkit-scrollbar-thumb {
    background: rgba(var(--color-foreground), 0.3);
    border-radius: 3px;
  }
  .visit-us__block-header h3{
     margin: 0 !important;
  }
  .visit-us__block {
    padding: 1.5rem;
  }

  .visit-us__block:last-child {
    margin-bottom: 0;
  }

  .visit-us__block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.1rem;
  }

  .visit-us__main-branch-badge {
   font-family: Lexend Deca;
    font-weight: 400;
    padding: 4px 8px;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0px;
  }







  .visit-us__view-map-button {
    width: auto;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
  }


  .visit-us__preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.4rem;
  }

  .visit-us__view-more {
    width: 100%;
    margin-top: 1.5rem;
  }

  @media screen and (max-width: 749px) {
    .visit-us__header {
      flex-direction: column;
      gap: 1.5rem;
    }

    .visit-us__title-wrapper {
      width: 100% !important;
    }

    .visit-us__main {
      flex-direction: column !important;
    }

    .visit-us__preview {
      width: 100% !important;
      flex: none !important;
      height: {{ section.settings.image_height_mobile }}px !important;
    }

    .visit-us__blocks {
      max-height: none !important;
      overflow: visible !important;
    }

    .visit-us__block:nth-child(n+4) {
      display: none;
    }

    .visit-us__block.show {
      display: block;
    }

    .visit-us__view-more {
      display: block !important;
      width: 100%;
      margin-top: 1.5rem;
    }
  }

  @media screen and (min-width: 750px) {
    .visit-us__preview,
    .visit-us__preview-image {
      --image-height: {{ section.settings.image_height_desktop }}px;
    }
  }

  @media screen and (max-width: 749px) {
    .visit-us__preview,
    .visit-us__preview-image {
      --image-height: {{ section.settings.image_height_mobile }}px;
    }
  }