table.cart-table a.btn-increase, table.cart-table a.btn-decrease, table.cart-table a.btn-remove {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  color: #fff0;
  border-radius: 4px;
  border: none;
  font-size: 0;
  width: 20px;
  height: 20px;
  display: block;
}
table.cart-table a.btn-increase {
  background-image: url("../img/plus.svg");
  background-color: #bbb;
}
table.cart-table a.btn-decrease {
  background-image: url("../img/minus.svg");
  background-color: #bbb;
}
table.cart-table a.btn-remove {
  background-image: url("../img/close.svg");
  background-color: #ee0000;
}
