/* Media Queries Mixin
**********************/
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");
.product-card {
  width: 320px;
  max-width: 450px;
  min-height: 360px;
  position: relative;
  -webkit-box-shadow: 0 2px 7px #dfdfdf;
          box-shadow: 0 2px 7px #dfdfdf;
  margin: 15px 15px;
  background: #fafafa;
}

@media only screen and (min-width: 768px) {
  .product-card {
    max-width: 320px;
  }
}

@media only screen and (min-width: 992px) {
  .product-card {
    max-width: 280px;
    max-height: 430px;
  }
}

.product-card__badge {
  width: 70px;
  position: absolute;
  left: 0;
  top: 20px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  padding: 3px 10px;
}

@media only screen and (min-width: 992px) {
  .product-card__badge {
    top: 10px;
    font-size: 13px;
    padding: 2px 8px;
  }
}

.product-card__badge--oferta {
  color: #dd3832;
}

.product-card__badge--nuevo {
  color: #32bbdd;
}

.product-card__tumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 300px;
  padding: 15px;
  background: #f0f0f0;
}

@media only screen and (min-width: 992px) {
  .product-card__tumb {
    max-height: 200px;
    padding: 9px;
  }
}

.product-card__tumb img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.product-card__details {
  padding: 30px;
  font-size: 1rem;
}

@media only screen and (min-width: 992px) {
  .product-card__details {
    padding: 10px;
  }
}

.product-card__details__subtitle {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

@media only screen and (min-width: 992px) {
  .product-card__details__subtitle {
    font-size: 12px;
    margin-bottom: 13px;
  }
}

.product-card__details h4 a {
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  text-transform: uppercase;
  color: #363636;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 20px;
}

@media only screen and (min-width: 992px) {
  .product-card__details h4 a {
    font-size: 0.9rem;
    line-height: 20px;
    height: 40px;
  }
}

.product-card__details h4 a:hover {
  color: #e97f2f;
}

.product-card__details p {
  font-size: 1rem;
  line-height: 22px;
  margin-bottom: 18px;
  color: #999;
  /* & */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media only screen and (min-width: 992px) {
  .product-card__details p {
    font-size: 0.9rem;
    line-height: 17px;
  }
}

.product-card__details__bottom {
  overflow: hidden;
  border-top: 1px solid #eee;
  padding-top: 0px;
  float: left;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.product-card__details__bottom__button {
  font-size: 18px;
  color: #e97f2f;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 25px 10px;
}

@media only screen and (min-width: 992px) {
  .product-card__details__bottom__button {
    font-size: 15px;
    margin: 15px 10px;
    position: relative;
  }
}

.product-card__details__bottom__button--noinfo {
  font-size: 18px;
  color: #37db74;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 25px 10px;
}

@media only screen and (min-width: 992px) {
  .product-card__details__bottom__button--noinfo {
    font-size: 15px;
    margin: 15px 10px;
    position: relative;
  }
}
/*# sourceMappingURL=cmp-card.css.map */