#tuition-table.table-container {
  max-width: 80rem;
  margin: auto;
}
#tuition-table.table-container > *:not(:first-child) {
  margin-top: 4em;
}
@media (max-width: 480px) {
  #tuition-table.table-container table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
  }
  #tuition-table.table-container table [empty] {
    display: none;
  }
}
#tuition-table.table-container table {
  --td-padding: clamp(.3em, 1.8vw, 2rem);
  border-collapse: collapse;
}
#tuition-table.table-container table caption {
  display: none;
}
#tuition-table.table-container table thead {
  font-weight: 600;
  text-align: left;
  background-color: var(--light);
}
#tuition-table.table-container table thead th:last-child {
  width: 13rem;
}
#tuition-table.table-container table thead th:nth-child(1) {
  min-width: 9rem;
}
#tuition-table.table-container table thead th:nth-child(3) {
  min-width: 9rem;
}
#tuition-table.table-container table th,
#tuition-table.table-container table td {
  padding: var(--td-padding);
}
#tuition-table.table-container table tbody td:not(:last-child) {
  color: var(--gray);
}
#tuition-table.table-container table tfoot {
  font-weight: 700;
  color: var(--form_label);
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.502);
}
#tuition-table.table-container table#tutition-table__grand-totals thead {
  font-size: 160%;
}
#tuition-table.table-container table#tutition-table__grand-totals tfoot {
  font-size: 120%;
  background-color: var(--light);
  border: none;
}
#tuition-table.table-container table#tutition-table__grand-totals tfoot tr > * {
  padding-top: 0;
}
#tuition-table.table-container .tuition-footnotes {
  font-size: 1.3rem;
  line-height: 2.5;
  opacity: 0.7;
}