/** Shopify CDN: Minification failed

Line 19:10 Unexpected "{"
Line 19:19 Expected ":"
Line 26:10 Unexpected "{"
Line 26:19 Expected ":"
Line 33:10 Unexpected "{"
Line 33:19 Expected ":"
Line 38:10 Unexpected "{"
Line 38:19 Expected ":"
Line 44:12 Unexpected "{"
Line 44:21 Expected ":"
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
#section-{{ section.id }}.custom-full-width-image {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}

#section-{{ section.id }} .fwi__img {
  display: block;
  width: 100%;
  height: auto;
}

/* Desktop visible only */
#section-{{ section.id }} .fwi__img--desktop {
  display: block !important;
}

/* Mobile hidden by default */
#section-{{ section.id }} .fwi__img--mobile {
  display: none !important;
}

/* Force switch on mobile only */
@media only screen and (max-width: 768px) {
  #section-{{ section.id }} .fwi__img--desktop {
    display: none !important;
  }
  #section-{{ section.id }} .fwi__img--mobile {
    display: block !important;
  }
}