/** Shopify CDN: Minification failed

Line 17:0 Unexpected "{"
Line 17:1 Expected identifier but found "%"
Line 27:0 Unexpected "{"
Line 27:1 Expected identifier but found "%"
Line 30:0 Unexpected "{"
Line 30:1 Expected identifier but found "%"
Line 34:0 Unexpected "{"
Line 34:1 Expected identifier but found "%"
Line 37:0 Unexpected "{"
Line 37:1 Expected identifier but found "%"
... and 22 more hidden warnings

**/
/* Hide prices in collections */
{% unless settings.show_price %}
.price,
.price-item,
.price__regular,
.price__sale,
.price__badge,
.price__badge--sale,
.price__badge--sold-out {
  display: none !important;
}
{% endunless %}

/* Hide vendor in collections */
{% unless settings.show_vendor %}
.vendor {
  display: none !important;
}
{% endunless %}

/* Hide rating in collections */
{% unless settings.show_rating %}
.rating {
  display: none !important;
}
{% endunless %}

/* Hide quick add button */
{% unless settings.enable_quick_add %}
.quick-add {
  display: none !important;
}
{% endunless %}

/* Hide variant picker */
{% unless settings.show_variant_picker %}
.variant-picker {
  display: none !important;
}
{% endunless %}

/* Hide quantity selector */
{% unless settings.show_quantity_selector %}
.quantity-selector {
  display: none !important;
}
{% endunless %}

/* Hide compare and wishlist buttons */
{% unless settings.show_compare %}
.compare-button {
  display: none !important;
}
{% endunless %}

{% unless settings.show_wishlist %}
.wishlist-button {
  display: none !important;
}
{% endunless %} 