.sect-cart__pane {
  background: url('/img/background-fish.jpg');
  height: 200px;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 58px;
  color: #fff;
}
.cart__total-amount {
  font-size: 2em;
  font-weight: bold;
}
.cart-table {
  width: 100%;
}
.cart-table__item {
  border-bottom: 1px dotted #F2A100;
}
.cart-table__title {
  font-weight: bold;
}
.cart-table__image {
  max-width: 200px;
  min-height: 120px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 10px;
  border-radius: 10px;
}
.cart-table__amount {
  display: flex;
  gap: 5px;
  padding-top: 10px;
  align-items: center;
  justify-content: right;
  padding-bottom: 35px;
}
.cart-table__amount__input {
  width: 27px;
  border: 1px solid #888;
  border-radius: 3px;
  text-align: center;
}
.cart-table__amount__minus,
.cart-table__amount__plus {
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: #F2A100;
}
.cart-table__amount__minus:hover,
.cart-table__amount__plus:hover {
  border-color: yellow;
  color: white;
  opacity: 0.8;
}
.delivery-type-info [data-id] {
  display: none;
}
