#cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#item-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  /*max-width: 40%;*/
}

.cart-order {
  display: flex;
  gap: 1rem;
}
#cart-title {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding-left: 1rem;
}
.order-pic img {
  height: 8rem;
  flex-grow: 0;
}
.order-detail {
  display: flex;
  flex-direction: column;
  line-height: 1.5rem;
  gap: 0.5rem;
  flex-grow: 3;
}
.price-quant {
  display: flex;
  flex-direction: column;
  line-height: 1.5rem;
  gap: 0.5rem;
  flex-grow: 1;
  align-items: flex-end;
}
.quant {
  display: flex;
  gap: 0.4rem;
  flex-wrap: nowrap;
  padding: 0.2rem;
  border-style: solid;
  border-width: 0px 1px;
  border-radius: 1rem;
  border-color: grey;
}
.order-quant {
  min-width: 1rem;
  text-align: center;
}

.plus,
.minus {
  display: flex;
  align-items: center;
  background: none;
  cursor: pointer;
  padding: 0 0.2rem 0 0.2rem;
}
#close-cart {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
#svg-close-cart {
  width: 1rem;
  height: 1rem;
}
#cart-summary {
  flex-grow: 0;
  padding-top: 1rem;
  align-self: flex-end;
  /*max-width: 60%;*/
  gap: 1rem;
}
#cart-shipment,
#cart-total-holder {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  justify-content: space-between;
}
#cart-message {
  display: none;
  padding: 1rem;
  font-size: 1rem;
}
#cart-message.visible {
  display: block;
}
#send-order {
  display: none;

  flex-direction: column;
}
#send-order.visible {
  display: flex;
}
#send-order input {
  font-size: 0.9rem;
  border: 1px solid grey;
  line-height: 1.5rem;
}
#send-order button {
  margin-top: 1rem;
  background-color: black;
  color: white;
}
@media (orientation: portrait) {
  #item-list,
  #cart-title,
  #cart-message {
    max-width: 80%;
  }
}
