.cart {
  position: absolute;
  width: auto;
  right: 0%;
  padding: 1rem 0;
  list-style: none;
  background: rgba(0, 0, 0, .8);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  display: none;
  transition: display 1s ease-out;
}
.cart-icon:hover .cart {
  display: block;
}
.cart li {
  padding: 1.5rem .6rem;
  height: auto
}
/*
.cart li button {
  background: transparent;
  margin: 0;
  width: 0;
  height: 0;
  color: #25A187;
  line-height: 0;
  padding: 0px 8px 0px 8px !important;
}
*/
.cart img {
  width: 50px;
  border: 1px solid #000000;
  float: left;
}
.cart .title {
  color: #f2f2f2;
  padding-left: 15px;
  float: left;
  font-size: 1rem;
}
.cart .price {
  display: block;
  float: left;
}
.cart #total {
  /*height: auto !important;*/
  margin: 1rem 0;
  background: #f2f2f2;
  color: #262626;
  font-size: 1.1rem;
}
.cart:after {
  width:0px;
  height:0px;
  border-left: 16px solid transparent;  /* izquierda flecha */
  border-right: 16px solid transparent; /* derecha flecha */
  border-bottom: 16px solid rgba(242, 242, 242, 0.5); /* base flecha y color*/
  content: " ";
  font-size:0px;
  line-height:0px;
  top: 0px;
  right: 1rem;
  position: absolute;
}
.cart #submitForm {
  float: right;
}

#totalItems {
  /*
  position: absolute;
  top: 3.5rem;
  right: 5px;
  */
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 1rem;
  margin: auto;
  color: #f2f2f2;
  font-size: 1rem;
  border-radius: 50%;
  background-color: red;
  border: 2px solid #f2f2f2;
  text-align: center;
}

.product-wrapper {
  width: 29%;
  margin: 0 4% 4% 0;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  float: left;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .product-wrapper {
    width: 100%;
  }
}
@media only screen and (min-width: 640px) and (max-width: 768px) {
  .product-wrapper {
    width: 33.333%;
  }
}
.product-wrapper .product-details {
  margin-bottom: 10%;
}
.product-wrapper .product-details h3 {
  text-align: left;
  font-size: 18px;
}
.product-wrapper .product-details .stock, .product-wrapper .product-details .price {
  color: #25A187;
  font-weight: bold;
}
.product-wrapper img {
  display: block;
  /*vertical-align: middle;*/
  width: 50%;
  margin: 10% auto;
  text-align: center;
}
