.pipeline-section {
  
}
.pipeline-wrapper {
  display: grid;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  overflow-x: auto;
  overflow-y: auto;
}
.pipeline-wrapper > div {
  background: white;
  padding: 5px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.pipeline-product {
  position: sticky;
  left: 0;
  overflow: hidden;
  font-size: 12px;
  color: var(--ux-swatch--grey-p800);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  row-gap: 0;
}
.pipeline-product > div {
  flex-shrink: 0;
  width: 200px;
}
.pipeline-product-name {
  font-size: 14px;
  width: 220px;
}
.pipeline-product-size-weight {
  color: var(--ux-swatch--grey-p600);
}
.pipeline-product-options {
  color: var(--ux-swatch--grey-p600);
}
.pipeline-product:first-of-type {
  /* border-top: none;
  border-left: none;
  background: transparent; */
}
.pipeline-day {
  display: flex;
  align-items: center;
}
.pipeline-day-column {
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 70px;
  font-size: 12px;
}
.pipeline-day-header {
  font-size: 16px;
  color: var(--ux-swatch--grey-p800);
  /* font-weight: bold; */
  /* position: sticky;
  top: 0;
  z-index: 1000; */
}
.pipeline-day-column-total {
  font-size: 16px;
}
.pipeline-day-column-day {
  cursor: pointer;
}

.pipeline-day-column-delivery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  height: 100%;
  padding: 2px 4px;
}
.pipeline-day-column-delivery-header-deliverynb {
  font-size: 10px;
  color: var(--ux-swatch--grey-p600);
}
.pipeline-day-column-delivery-header-time {
  font-size: 14px;
  color: var(--ux-swatch--grey-p900);
}
.pipeline-day-column-delivery-header-customer {
  font-size: 10px;
  color: var(--ux-swatch--grey-p600);
}
.pipeline-ready {
  color: var(--aurelia-ux--design-primary);
}
.pipeline-not-ready {
  color: var(--ux-swatch--red-p600);
}
.pipeline-click {
  cursor: pointer;
}
.pipeline-click:hover {
  background: var(--ux-swatch--grey-p200);
}
