/** Shopify CDN: Minification failed

Line 19:0 Unexpected "{"
Line 19:1 Unexpected "{"
Line 19:3 Expected identifier but found "'section-image-banner.css'"
Line 20:0 Unexpected "{"
Line 20:1 Unexpected "{"
Line 20:3 Expected identifier but found "'section-image-banner.css'"
Line 21:0 Unexpected "{"
Line 21:1 Unexpected "{"
Line 21:3 Expected identifier but found "'section-image-banner.css'"
Line 22:0 Unexpected "{"
... and 16 more hidden warnings

**/


/* CSS from section stylesheet tags */
{{ 'section-image-banner.css' | asset_url | stylesheet_tag }}
{{ 'section-image-banner.css' | asset_url | stylesheet_tag }}
{{ 'section-image-banner.css' | asset_url | stylesheet_tag }}
{{ 'section-image-banner.css' | asset_url | stylesheet_tag }}
{{ 'section-image-banner.css' | asset_url | stylesheet_tag }}
<style>
.custom-image-text-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.custom-image-text-section .image-container {
  flex-basis: {{ section.settings.full_width ? '100%' : '50%' }};
  text-align: center;
}
.custom-image-text-section .text-container {
  flex-basis: 50%;
  text-align: {{ section.settings.text_alignment }};
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  .custom-image-text-section .image-container,
  .custom-image-text-section .text-container {
    flex-basis: 100%;
  }
  .custom-image-text-section .text-container {
    order: {{ section.settings.text_alignment == 'left' ? '1' : '2' }};
  }
}
</style>