/** Shopify CDN: Minification failed

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

**/


/* CSS from section stylesheet tags */
/* 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%;
}
.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;
  }
}
.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;
    }
  }