#basket .product-cntr {
  display: block;
  position: relative;
  border-bottom: 1px dotted #EEE;
  margin-bottom: 2rem;
}
#basket .product-cntr:first-of-type {
  margin-top: 3rem;
}
#basket .product-cntr .main-photo-cntr {
  position: relative;
  height: 0;
  padding-top: 71.42%;
  background: #FFF;
  border: 1px solid #EEE;
  overflow: hidden;
  text-align: center;
  margin-bottom: 1rem;
}
#basket .product-cntr .main-photo-cntr img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  transition: all 0.2s ease;
}
#basket .product-cntr:hover .main-photo-cntr img {
  transform: translateY(-50%) scale(1.1);
}
#basket .product-cntr .main-photo-cntr .no-photo i {
  font-size: 5rem;
  color: #EEE;
}
#basket .product-cntr .details-cntr {
  margin-bottom: 1rem;
}
#basket .product-cntr .details-cntr .name {
  font-size: 1.2rem;
  transition: all 0.2s ease;
}
#basket .product-cntr .details-cntr .name:hover {
  color: #00C8C3;
}
#basket .product-cntr .details-cntr .reference {
  font-size: 0.7rem;
  margin-bottom: 1rem;
}
#basket .product-cntr .details-cntr > .price {
  position: relative;
  display: inline-block;
  color: #00C8C3;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  margin-right: 0.5rem;
}
#basket .product-cntr .details-cntr > .price.on-offer {
  color: #182534;
}
#basket .product-cntr .details-cntr > .price > .strike {
  position: relative;
  top: 20px;
  border-top: 2px solid #999;
}
#basket .product-cntr .details-cntr > .offer-price {
  display: inline-block;
  color: #00C8C3;
  font-size: 2rem;
  margin-bottom: 0.4rem;
  margin-right: 0.5rem;
}
#basket .product-cntr .details-cntr > .offer {
  display: inline-block;
  background: #00C8C3;
  padding: 0.2rem 0.5rem;
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1rem;
  border-radius: 3px;
  vertical-align: text-bottom;
}
#basket .product-cntr .details-cntr .stock {
  font-size: 0.9rem;
  font-weight: 600;
  color: #00C8C3;
  margin-bottom: 2.4rem;
}
#basket .product-cntr .details-cntr .stock.out-of-stock {
  color: #182534;
  text-transform: uppercase;
}
#basket .product-cntr .details-cntr .stock > .collection-only {
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 0.5rem;
}
#basket .product-cntr .remove-item-btn {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 50px;
  font-size: 1.6rem;
  text-align: center;
  color: #DDE7EE;
  transition: all 0.2s ease;
}
#basket .product-cntr .remove-item-btn:hover {
  background: #FF0385;
  color: #FFF;
}
#basket .product-cntr .remove-item-btn > i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 992px) {
  #basket .product-cntr .remove-item-btn {
    right: 0.75rem;
    height: 50px;
  }
}
#basket #subtotal, #basket #vat, #basket #total {
  text-align: right;
  margin-bottom: 1rem;
}
#basket #subtotal strong, #basket #vat strong, #basket #total strong {
  font-size: 1.6rem;
}
#basket #total strong {
  font-size: 2.6rem;
}
#basket #buttons a,
#basket #buttons button {
  margin-top: 2rem;
}/*# sourceMappingURL=basket.css.map */