/** Shopify CDN: Minification failed

Line 94:0 Unexpected "{"
Line 94:1 Expected identifier but found "%"
Line 95:2 Unexpected "<"
Line 97:7 Expected identifier but found "%"
Line 98:8 Unexpected "<"
Line 98:32 Unexpected "{"
Line 98:38 Expected ":"
Line 98:47 Unexpected "<"
Line 99:7 Expected identifier but found "%"
Line 101:6 Unexpected "<"
... and 58 more hidden warnings

**/


/* CSS from section stylesheet tags */
#section-id-1634204994d2bd1a55 .gallery__item .image-overlay .inner {
        background-color: #ffffff;
        color: #464654;
      }
    

    
      
        #section-id-1634204994d2bd1a55 .gallery__item-1 .gallery__image {
          background-position: center center;
        }
      
    
      
        #section-id-1634204994d2bd1a55 .gallery__item-2 .gallery__image {
          background-position: center center;
        }
      
    
      
        #section-id-1634204994d2bd1a55 .gallery__item-3 .gallery__image {
          background-position: center center;
        }
      
    
      
        #section-id-1634204994d2bd1a55 .gallery__item-4 .gallery__image {
          background-position: center center;
        }
      
    

    @media (min-width: 768px) {

      #section-id-1634204994d2bd1a55 .line-1 {font-size: 16.2px;
      }
    }

    @media (min-width: 1200px) {
      #section-id-1634204994d2bd1a55 .line-1 {
        font-size: 18px;
      }
    }
#section-id-1634309487badc26e4 .gallery__item .image-overlay .inner {
                background-color: #ffffff;
                color: #464654;
            }

            #section-id-1634309487badc26e4 .gallery__item-1 .gallery__image {
                background-position: center center;
            }

            #section-id-1634309487badc26e4 .gallery__item-2 .gallery__image {
                background-position: center center;
            }

            #section-id-1634309487badc26e4 .gallery__item-3 .gallery__image {
                background-position: center center;
            }

            #section-id-1634309487badc26e4 .gallery__item-4 .gallery__image {
                background-position: center center;
            }

            @media (min-width: 768px) {
                #section-id-1634309487badc26e4 .line-1 {
                    font-size: 16.2px;
                }
            }

            @media (min-width: 1200px) {
                #section-id-1634309487badc26e4 .line-1 {
                    font-size: 18px;
                }
            }
{% if section.settings.content_layout != "hidden" %}
  <div class="section container" data-cc-animate>
    <div class="reading-column">
      {% if section.settings.content_layout == "above" and section.settings.show_title %}
        <h1 class="page-title">{{ page.title }}</h1>
      {% endif %}

      <div class="page-with-contact-form row space-below">
        {% if section.settings.content_layout == "above" %}
        <div class="rte full column pb-medium mb-0">
          {{ page.content | replace: 'fullwidth"', '" data-fullwidth="true"' }}
        </div>
        {% endif %}

        {% if section.settings.content_layout == "left" or section.settings.content_layout == "right" %}
          <div class="rte half column">
            {% if section.settings.content_layout == "left" %}
              {% if section.settings.show_title %}<h1 class="page-title">{{ page.title }}</h1>{% endif %}
              {{ page.content }}
            {% elsif section.settings.content_layout == "right" %}
              {% render 'vendor-form' %}
            {% endif %}
          </div>
        {% endif %}

        {% if section.settings.content_layout == "left" or section.settings.content_layout == "above" or section.settings.content_layout == "right" %}
          <div class="full column">
            {% if section.settings.content_layout == "left" or section.settings.content_layout == "above" %}
              {% render 'vendor-form' %}
            {% elsif section.settings.content_layout == "right" %}
              <h1 class="page-title">{{ page.title }}</h1>
              {{ page.content }}
            {% endif %}
          </div>
        {% endif %}
      </div>
    </div>
  </div>
{% else %}
<div class="section container" data-cc-animate>
  <div class="reading-column">
    <div class="page-with-contact-form space-below">
      {% render 'vendor-form' %}
    </div>
  </div>
</div>
{% endif %}


{% schema %}
  {
    "name": "Vendor page",
    "settings": [
      {
        "type": "checkbox",
        "id": "show_title",
        "label": "Show page title",
        "default": true
      },
      {
        "type": "select",
        "id": "content_layout",
        "label": "Page text layout",
        "default": "left",
        "options": [
          {
            "value": "hidden",
            "label": "Hidden"
          },
          {
            "value": "above",
            "label": "Above"
          },
          {
            "value": "left",
            "label": "Left"
          },
          {
            "value": "right",
            "label": "Right"
          }
        ]
      }
    ]
  }
{% endschema %}