.price-table-section {
  /* background:
    linear-gradient(180deg, rgba(255, 252, 242, 0.96), rgba(255, 255, 255, 0.98)),
    var(--vvhite); */
  background: var(--white);
}

.price-table-lead {
  max-width: 760px;
  color: var(--grey-clay);
}

.price-level-tabs {
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.price-level-tab {
  min-width: 4rem;
  border: 1px solid rgba(65, 133, 170, 0.24);
  border-radius: 999px;
  background: #fff;
  color: var(--grey-olive);
  font-weight: 800;
}

.price-level-tab.active {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
  color: #fff;
}

.price-level-tab.disabled,
.price-level-tab:disabled {
  border-color: rgba(169, 169, 169, 0.28);
  background: var(--grey-faint);
  color: var(--grey-dark);
  opacity: 1;
}

.price-table-panel {
  overflow: hidden;
  border: 1px solid rgba(65, 133, 170, 0.16);
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 18px 48px rgba(13, 14, 18, 0.08);
}

.price-table-toolbar {
  padding: 1.25rem 1rem 1rem;
  border-bottom: 1px solid rgba(65, 133, 170, 0.14);
  background: linear-gradient(90deg, rgba(233, 246, 255, 0.8), rgba(255, 246, 245, 0.9));
}

.price-table-link {
  --bs-btn-bg: var(--orange-dark);
  --bs-btn-border-color: var(--orange-dark);
  --bs-btn-hover-bg: var(--red-flame);
  --bs-btn-hover-border-color: var(--red-flame);
  min-width: 10rem;
}

.price-table-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  /* scrollbar-color: var(--orange-dark) rgba(65, 133, 170, 0.14); */
  scrollbar-width: thick;
}

.price-table-scroll::-webkit-scrollbar {
  height: 20px;
}

.price-table-scroll::-webkit-scrollbar-track {
  background: rgba(65, 133, 170, 0.14);
  /* border-radius: 999px; */
}

.price-table-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-light));
  border: none;
  /* border-radius: 999px; */
}

.price-table {
  --bs-table-hover-bg: rgba(255, 115, 25, 0.07);
  min-width: 3600px;
  font-size: 0.92rem;
}

.price-table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  border-bottom: 0;
  background: var(--blue-pastel);
  color: #fff;
  font-family: var(--h-font), system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.price-table th,
.price-table td {
  min-width: 8.5rem;
  padding: 0.9rem 1rem;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.price-table .price-table-sticky {
  position: sticky;
  left: 0;
  z-index: 4;
  min-width: 13.5rem;
  text-align: left;
}

.price-table thead .price-table-sticky {
  z-index: 5;
  background: var(--orange-dark);
}

.price-table tbody .price-table-sticky {
  background: #fff;
  color: var(--grey-olive);
  font-weight: 700;
  box-shadow: 1px 0 0 rgba(65, 133, 170, 0.14);
}

.price-amount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.4rem;
  color: var(--blvck);
  font-weight: 700;
}

.price-unavailable {
  color: var(--grey-clay);
}

.price-table-disclaimer {
  padding: 0.85rem 1rem 1rem;
  color: var(--grey-clay);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .price-level-tabs {
    justify-content: flex-start !important;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.35rem;
  }

  .price-level-tab {
    min-width: 2.75rem;
    padding: 0.35rem 0.6rem;
    font-size: 0.82rem;
  }

  .price-table-panel {
    margin-right: -0.75rem;
    margin-left: -0.75rem;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .price-table {
    min-width: 3320px;
    font-size: 0.86rem;
  }

  .price-table th,
  .price-table td {
    min-width: 8rem;
    padding: 0.8rem 0.85rem;
  }

  .price-table .price-table-sticky {
    min-width: 8.5rem;
    max-width: 8.5rem;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.15;
    font-size: 0.78rem;
  }
}
