/** Shopify CDN: Minification failed

Line 20:0 Unexpected "$"
Line 54:51 Expected identifier but found "!"
Line 108:21 Unexpected "{"
Line 167:13 Expected identifier but found "!"
Line 187:13 Expected identifier but found "!"

**/
/*================================================================================
Product grid hover special effect:
When mouse roll over the product image, the add to cart button appear as the stars
and price.
A frame on the red theme color surround the box and image frame.
Source: http://codepen.io/schliflo/pen/gbzvjg
================================================================================== */
@import "compass/css3";

/* =============================================================================== */
$brand-primary: #f45b4f;/* red theme as #f45b4f Light version >#f67167// turquoise as #30BCA5*/
$brand-secondary: #f45b4f;/*yellow as #FCFA6B*/
$color-text: #333;/*black*/
$color-text-i: #EEEEEE;/*gray white*/
$color-border: #f45b4f/*turquoise as #30BCA5*/
$color-site-bg: #FFF;/*white*/
/*================================================================================= */

.product {
  -moz-box-shadow: 0 0 0 0 #f45b4f;
  -webkit-box-shadow: 0 0 0 0 #f45b4f;
  box-shadow: 0 0 0 0 #f45b4f;
  -moz-transition: box-shadow 0.3s ease-in-out;
  -o-transition: box-shadow 0.3s ease-in-out;
  -webkit-transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  display: block;
  position: relative;
  width: 33.333%;
  background-color: #000;
  margin-left: 33.333%;
  margin-top: 10vh;
}
.product img {
  display: block;
  width: 100%;/*100%*/
  opacity: 1;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.product ul, .product figcaption, .product .price {
  position: absolute;
  z-index: +1;/*Place element in front of another*/!important
}
.product ul {
  top: 20px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.product ul li {
  float: left;
}
.product ul li + li {
  margin-left: 5px;/*20px*/
}
.product ul li i {
  color: #EEEEEE;
  font-size: 20px;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.product ul li:hover i, .product ul li:focus i, .product ul li:active i {
  color: #FCFA6B;
}
.product .price {
  /*bottom: 20px;/*20px position over image*/
  /*right: 20px;/*20px position over image*/
  color: #EEEEEE;/*gray white, for black: #333*/
  font-size: 24px;/*18px*/
  font-weight: 700;/*700 : thickness like bold or not*/
  opacity: 0;
  /*background-color:#f45b4F;*/
  z-index: 3;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}/*/*/
.product form {
  opacity:0;
  background-color:#f45b4F;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.product figcaption, {
  -moz-box-shadow: 0 0 0 0 #f45b4f;
  -webkit-box-shadow: 0 0 0 0 #f45b4f;
  box-shadow: 0 0 0 0 #f45b4f;
  -moz-transition: box-shadow 0.3s ease-in-out, max-height 0.3s ease-in-out;
  -o-transition: box-shadow 0.3s ease-in-out, max-height 0.3s ease-in-out;
  -webkit-transition: box-shadow 0.3s ease-in-out, max-height 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, max-height 0.3s ease-in-out;
  text-align: center;
  background-color: #f45b4f;
  max-height: 0;
  overflow: visible;
}
.product h3 {
  line-height: 1.4;
  font-family: 'HelveticaNeue','Helvetica Neue','Helvetica','Arial',sans-serif;/*'Unica One', cursive;*/
  font-weight: 400;/*400*/
  text-transform: uppercase;
  font-size: 15px;/*24px*/
  position: relative;
  display: inline-block;
  color: #3f3f3f;/*#333333 dark gray*/
  /*padding: 15px;*/
  z-index: 3;
  opacity: 1;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.product h3:before, .product h3:after {/*make a "—" before and after the title*/
  content: '';
  position: absolute;
  display: block;
  top: 49%;
  -moz-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  /*width: 15px;
  height: 2px;/*make a "—" before and after the title */
  background-color: #333;
}
.product h3:before {/*position of the "—" before and after the title*/
  left: -10px;
}
.product h3:after {/*position of the "—" before and after the title*/
  right: -10px;
}
.product p {
  color: #333;/*#EEEEEE Gray white, for black : #333*/
  font-weight: 200;
  font-size: 13px;
  line-height: 20px;
  padding: 0;
  max-height: 0;
  overflow: visible;/*hidden*/
  width:100%;
  opacity: 1;!important
  -moz-transition: max-height 0.3s ease-in-out;
  -o-transition: max-height 0.3s ease-in-out;
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
}

.product:hover, .product:focus, .product:active {
  /*Editing of the img frame border*/
  z-index: 3;
  background-color:#f45b4f;/*#f45b4f*/
  -moz-box-shadow: 0 0 0 8px #f45b4f;/*4px ; $color-border*/
  -webkit-box-shadow: 0 0 0 8px #f45b4f;/*4px ; $color-border*/
  box-shadow: 0 0 0 6px #f45b4f;/*2px ; $color-border*/
  /*Editing of the bottom block border*/
}
.product:hover img, .product:focus img, .product:active img {
  opacity: .66;
}
.product:hover ul, .product:hover .price, .product:hover form, .product:focus ul, .product:focus .price, .product:focus form .product:active ul, .product:active .price, .product:active form {
  opacity: 1;!important
}

.product:hover figcaption, .product:focus figcaption, .product:active figcaption {
  -moz-box-shadow: 0 0 0 6px #f45b4f;/*2px ; $color-border*/
  -webkit-box-shadow: 0 0 0 4px #f45b4f;/*2px ; $color-border*/
  box-shadow: 0 0 0 6px #f45b4f;/*Give the smoothness 8px $color-border*/
  text-align: center;
  background-color: #f45b4f;/*$color-border*/
  max-height: 100%;
  overflow: visible;
}
.product:hover h3, .product:focus h3, .product:active h3 {
  color: #EEEEEE;
}
/*changing color of the "—" before and after title when parametered */
.product:hover h3:before, .product:hover h3:after, .product:focus h3:before, .product:focus h3:after, .product:active h3:before, .product:active h3:after {
  background-color: #EEEEEE;
}
.product:hover p .product:focus p .product:active p {/*p */
  /*padding: 0 15px 15px 15px;
  max-height: 100%;
  overflow: visible;*/
  opacity: 1;
}




