.page table {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-bottom: 35px;
  overflow: auto;
  display: block;
}
.page table th,
.page table td {
  padding: 25px 15px;
  color: #4F4F4F;
  border-color: #e0e0e0;
  border-width: 0 0 1px 0;
  border-style: solid;
}
.page table th {
    font-weight: 600;
    white-space: nowrap;
}
.page table td {
  font-weight: 500;
}
.page table th:first-child, .page table td:first-child {
  padding-left: 0;
}
.page table th:last-child, .page table td:last-child {
  padding-right: 0;
  text-align: right;
}
.page table td[colspan] {
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 760px) {
    .page table {
        font-size: 16px;
    }
    .page table td[colspan] {
      font-size: 16px;
    }
}