.product-item {
  flex-direction: column;
}

.product-item__first-row,
.product-item__second-row {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.product-item__label,
.product-item__description {
  width: 100%;
}
.product-item__label {
  display: flex;
  flex-direction: column;
}
.product-item__sku {
  font-size: 12px;
  color: var(--ux-swatch--grey-p600);
}
.product-item__position {
  width: 10px;
  flex-shrink: 0;
  margin-right: 16px;
}
.product-item__quantity,
.product-item__action {
  width: 40px;
  flex-shrink: 0;
  margin-right: 16px;
}
.product-item__chips {
  flex-shrink: 0;
  margin-right: 16px;
  width: 66px;
}
.product-item__chips .ux-chip {
  font-size: 10px;
  height: 24px;
}
.product-item__chips .ux-chip__content {
  margin: 0 6px;
}
.product-item__prices {
  width: 145px;
  flex-shrink: 0;
  margin-left: 16px;
  text-align: right;
}
.product-item__prices .unit-price,
.product-item__prices .total-price {
  display: inline-block;
  width: 70px;
  flex-shrink: 0;
  text-align: right;
}
.product-item__delivery-chip {
  display: none;
}

@media (min-width: 768px) {
  .product-item__delivery-chip {
    display: inline-flex;
  }
}
.product-option-item {
  font-size: 12px;
}
