/* item-name/item-qty แยกชื่อ/จำนวนของแต่ละไอเทมใน package_detail (parseItemDetail ใน
   shop-product-modal.js) ชื่อชิดซ้าย จำนวนชิดขวา ด้วย flexbox */
.gp-shop-product-modal__item-row--split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.gp-shop-product-modal__item-row--split .item-name {
  color: #ffffff;
  display: flex;
  align-items: center;
}

.gp-shop-product-modal__item-row--split .item-name::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: #b0b0b0;
  flex-shrink: 0;
}

.gp-shop-product-modal__item-row--split .item-qty {
  color: #b0b0b0;
  white-space: nowrap;
}
