.price-table {
  min-width: 0;
}

.price-table__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.price-table__service-column {
  width: 46%;
}

.price-table__quantity-column {
  width: 30%;
}

.price-table__cost-column {
  width: 24%;
}

.price-table__heading,
.price-table__cell {
  min-width: 0;
  padding: 0;
  color: var(--color-ink);
  font-weight: 500;
  text-align: left;
  overflow-wrap: anywhere;
}

.price-table__header-row {
  border-bottom: 1px solid #d9d9d9;
}

.price-table__heading {
  padding-bottom: 29px;
  vertical-align: top;
  font-size: 12px;
  line-height: 1.37;
  letter-spacing: -0.04em;
}

.price-table__row {
  border-bottom: 1px solid #d9d9d9;
}

.price-table__row:last-child {
  border-bottom: 0;
}

.price-table__cell {
  padding-block: 27px;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.01;
  letter-spacing: -0.04em;
}

.price-table__cell--muted {
  color: #777777;
}

@media (max-width: 767px) {
  .price-table__service-column {
    width: 51.43%;
  }

  .price-table__quantity-column {
    width: 22.86%;
  }

  .price-table__cost-column {
    width: 25.71%;
  }

  .price-table__heading {
    padding-bottom: 10px;
    font-size: 10px;
  }

  .price-table__cell {
    padding-block: 19px;
    font-size: 14px;
  }

  .price-table__cell--muted {
    font-size: 12px;
  }
}
