.checkout-product-container {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.checkout-product-container .product-image {
  height: 80px;
  max-width: 80px;
  flex: 1;
}
.checkout-product-container .product-image img {
  height: 100%;
}
.checkout-product-container .product-wrapper {
  flex: 3;
}

.checkout-product-container .price-wrapper {
  flex: 1;
}
.total-amount {
  text-align: right;
}
.total-amount .amount {
  font-weight: bold;
}
.buy-button-wrapper {
  width: 100%;
  text-align: right;
}
.buy-button {
  font-weight: bold;
  padding: 8px 12px;
  background: rgba(238, 164, 27, 0.699);
  color: black;
  display: inline-block;
  cursor: pointer;
}
.buy-button:hover {
  background: rgb(238, 164, 27);
}
label[for="shipping-destination"] {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
label[for="shipping-destination"] img {
  width: 35px;
}
