/** Shopify CDN: Minification failed

Line 16:0 Unexpected "{"
Line 16:1 Expected identifier but found "%"
Line 20:23 Expected identifier but found whitespace
Line 20:25 Unexpected "{"
Line 20:38 Expected ":"
Line 22:20 Expected identifier but found whitespace
Line 22:22 Unexpected "{"
Line 22:35 Expected ":"
Line 24:15 Expected identifier but found whitespace
Line 24:17 Unexpected "{"
... and 19 more hidden warnings

**/
{% assign image_array = product.metafields.custom.lifestyle_images | split: "," %}

#lifestyle-images-slider {
  line-height: 0;
  -webkit-column-count: {{ image_array.size }};
  -webkit-column-gap: 0px;
  -moz-column-count: {{ image_array.size }};
  -moz-column-gap: 0px;
  column-count: {{ image_array.size }};
  column-gap: 0px;
}
#lifestyle-images img {
  width: 100% !important;
  height: auto !important;
}
@media (max-width: 800px) {
  #lifestyle-images-slider {
    -moz-column-count: {{image_array.size | divided_by: 2 }};
    -webkit-column-count: {{image_array.size | divided_by: 2 }};
    column-count: {{image_array.size | divided_by: 2 }};
  }
}
@media (max-width: 400px) {
  #lifestyle-images-slider {
    -moz-column-count: {{image_array.size | divided_by: 2 }};
    -webkit-column-count: {{image_array.size | divided_by: 2 }};
    column-count: {{image_array.size | divided_by: 2 }};
  }
}