/** Shopify CDN: Minification failed

Line 19:0 Unexpected "{"
Line 19:1 Expected identifier but found "%"
Line 20:2 Unexpected "{"
Line 20:3 Expected identifier but found "%"
Line 21:22 Unexpected "{"
Line 21:31 Expected ":"
Line 21:54 Unexpected "{"
Line 21:61 Expected ":"
Line 22:16 Expected identifier but found whitespace
Line 22:18 Unexpected "{"
... and 82 more hidden warnings

**/


/* CSS from section stylesheet tags */
{% for block in section.blocks %}
  {% if block.type == 'feature' %}
    #shopify-section-{{ section.id }} .feature-block-{{ block.id }} .feature-block-heading {
      font-size: {{ block.settings.heading_size }}px;
      color: {{ block.settings.heading_color }};
    }
    
    #shopify-section-{{ section.id }} .feature-block-{{ block.id }} .feature-block-text {
      font-size: {{ block.settings.text_size }}px;
      color: {{ block.settings.text_color }};
    }
    
    @media screen and (max-width: 480px) {
      #shopify-section-{{ section.id }} .feature-block-{{ block.id }} .feature-block-heading {
        font-size: {{ block.settings.heading_size_mobile }}px;
      }
      
      #shopify-section-{{ section.id }} .feature-block-{{ block.id }} .feature-block-text {
        font-size: {{ block.settings.text_size_mobile }}px;
      }
    }
  {% endif %}
{% endfor %}
{% for block in section.blocks %}
  {% if block.type == 'feature' %}
    #shopify-section-{{ section.id }} .feature-block-{{ block.id }} .feature-block-heading {
      font-size: {{ block.settings.heading_size }}px;
      color: {{ block.settings.heading_color }};
    }
    
    #shopify-section-{{ section.id }} .feature-block-{{ block.id }} .feature-block-text {
      font-size: {{ block.settings.text_size }}px;
      color: {{ block.settings.text_color }};
      opacity: 0.6;
    }
    
    @media screen and (max-width: 480px) {
      #shopify-section-{{ section.id }} .feature-block-{{ block.id }} .feature-block-heading {
        font-size: {{ block.settings.heading_size_mobile }}px;
      }
      
      #shopify-section-{{ section.id }} .feature-block-{{ block.id }} .feature-block-text {
        font-size: {{ block.settings.text_size_mobile }}px;
      }
    }
  {% endif %}
{% endfor %}