/** Shopify CDN: Minification failed

Line 23:13 Expected identifier but found whitespace
Line 23:15 Unexpected "{"
Line 23:24 Expected ":"
Line 58:19 Expected identifier but found whitespace
Line 58:21 Unexpected "{"
Line 58:30 Expected ":"
Line 64:12 Expected identifier but found whitespace
Line 64:14 Expected identifier but found "%"
Line 64:60 Unexpected "100px"
Line 64:66 Expected identifier but found "%"
... and 18 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:image-left (INDEX:41) */
/* Add CSS to handle image alignment */
.image-wrapper {
  text-align: {{ section.settings.alignment }};
}

.image-wrapper img {
  max-width: 100%;
  height: auto;
}

/* Center image on mobile devices */
@media (max-width: 767px) {
  .image-wrapper img {
    text-align: center !important;
  }
}

/* Add CSS for image size */
.image-wrapper img.small {
  max-width: 50%;
}

.image-wrapper img.medium {
  max-width: 75%;
}

.image-wrapper img.large {
  max-width: 100%;
}
/* END_SECTION:image-left */

/* START_SECTION:image-with-iocn (INDEX:42) */
.image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: {{ section.settings.background_color }};
  box-sizing: border-box;
  padding: 10px;
}
.image-wrapper img {
  margin: 5px;
  max-width: {% if section.settings.image_size == 'small' %}100px{% elsif section.settings.image_size == 'medium' %}200px{% else %}300px{% endif %};
  height: auto;
}
/* Add extra padding for larger screens */
@media (min-width: 768px) {
  .image-wrapper {
    padding: 20px;
  }
}
@media (min-width: 1200px) {
  .image-wrapper {
    padding: 30px;
  }
}
/* END_SECTION:image-with-iocn */

/* START_SECTION:image-with-text-1 (INDEX:43) */
.image-with-custom-options {
      overflow: hidden;
  }
  .image-wrapper {
    display: flex;
    align-items: center;
    justify-content: {{ section.settings.image_alignment }};
    background-color: {{ section.settings.background_color }};
    box-sizing: border-box;
    padding: 10px;
  }

  .image-wrapper img {
    max-width: {% if section.settings.image_size == 'small' %}200px{% elsif section.settings.image_size == 'medium' %}400px{% else %}600px{% endif %};
    height: auto;
  }

  @media (min-width: 768px) {
    .image-wrapper {
      padding: 20px;
    }
  }

  @media (min-width: 1200px) {
    .image-wrapper {
      padding: 30px;
    }
  }
/* END_SECTION:image-with-text-1 */