/** Shopify CDN: Minification failed

Line 35:13 Expected identifier but found whitespace
Line 35:26 Unexpected "url("

**/

/* Color swatch styling */
.color-swatch.floral {
  background: content-box url("/cdn/shop/files/floral-color.jpg")
    no-repeat center center !important;
  background-size: cover;
}
.color-swatch.black-cow {
  background: content-box url("/cdn/shop/files/black-cow-color.jpg")
    no-repeat center center !important;
  background-size: cover;
}
.color-swatch.brown-cow {
  background: content-box url("/cdn/shop/files/brown-cow-color.jpg")
    no-repeat center center !important;
  background-size: cover;
}
.color-swatch.zebra {
  background: content-box url("/cdn/shop/files/zebra-color.jpg")
    no-repeat center center !important;
  background-size: cover;
}
.color-swatch.cream-ostrich {
  background: content-box url("/cdn/shop/files/cream-ostrich-color.jpg")
    no-repeat center center !important;
  background-size: cover;
}
.color-swatch.grey-camo
  background: content-box url("/cdn/shop/files/grey-camo-color.jpg")
    no-repeat center center !important;
  background-size: cover;
}
.color-swatch.crimped-cow {
  background: content-box url("/cdn/shop/files/crimped-cow-color.jpg")
    no-repeat center center !important;
  background-size: cover;
}
.color-swatch.ostrich {
  background: content-box url("/cdn/shop/files/ostrich-color.jpg")
    no-repeat center center !important;
  background-size: cover;
}


/* Color Swatch - Product Card Styling */

@media screen and (pointer: fine) {
  .product-card__color-swatch {
    opacity: 0;
    transition: opacity .2s ease-in-out, transform .2s ease-in-out;
    transform: translateY(5px);
  }

  .product-card:hover .product-card__color-swatch {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Final Sale Warning */
.final-sale-warning {
  color: #fff;
  background-color: #000;
  display: inline-block;
  padding: 2px 5px;
  font-size: 10px;
  letter-spacing: 1px;
  margin-top: 5px;
}