html {
  font-family: "Roboto";
  font-size: 12px;
}

[data-theme-font="primary"] {
  font-family: 'Google Sans';
}

.chart {
  font-family: 'Roboto';
}

.ng-hide {
  display: none;
}

.page {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

.column {
  display: flex;
}

.column.center {
  justify-content: center;
}

.column.space-between {
  justify-content: space-between;
}

.column.align-center {
  align-items: center;
}

.heading {
  font-family: "Google Sans";
}

.heading.primary {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 700;
}

.heading.secondary {
  margin-bottom: 2rem;
  font-size: 1.7rem;
  font-weight: 500;
}

.heading.tertiary {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.font-weight-m {
  font-weight: 500;
}

.para {
  color: #444;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
}

.text-sub,
.list-item.text-sub {
  color: #888;
  font-size: 0.8em;
  font-weight: 300;
  line-height: 1.4;
}

.list {
  width: 100%;
}

.para +.list {
  margin-top: 2em;
}

.list.inline.center {
  display: flex;
  flex-flow: row;
  justify-content: space-evenly;
}

.list.decimal {
  list-style: decimal;
  list-style-position: outside;
}

.list.disc {
  list-style: disc;
  list-style-position: outside;
}

.list-item {
  margin-top: 1rem;
  margin-left: 2rem;
  font-size: 1rem;
  font-weight: 300;
  color: #444;
  line-height: 2;
}

.list:not(.inline) .list-item:nth-child(n + 2) {
  margin-top: 1rem;
}

.list.inline .list-item {
  float: left;
}

.spacer {
  border: none;
}

.divider {
  height: 1px;
  page-break-after: always;
}

.table {
  width: 100%;
}

.table th,
.table td {
  padding: .8em 1.5em;
  border: 1px solid #dfdfdf;
  font-size: 1rem;
}

.table.donation th:nth-child(n + 2),
.table.donation td:nth-child(n + 2) {
  text-align: right;
}


@media print {
  @page {
    size: letter;
    margin: 20mm;
  }

  body {
    display: none;
  }
}