:root{
  --ctbc: var(--grey_05);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8em;
  line-height: 1rem;

  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--grey_05);
  border-radius: 4px;
  overflow: hidden;

}

th, td {
  vertical-align: top;
  padding: 7px 9px;
  background-color:white;

  border-right: 1px solid var(--grey_05);

}

th {
  border-bottom: 1px solid var(--grey_05);
}

th strong{
  font-weight:inherit;
}

th {
  font-weight:bold;
}

th:nth-child(1), td:nth-child(1) { width: 6%; text-align: center; }
th:nth-child(2), td:nth-child(2) { width: 47%; }
th:nth-child(3), td:nth-child(3) { width: 47%; }

th:last-child, td:last-child {
  border-right: none;
}

tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--grey_05);
}

th:first-child {
  border-top-left-radius: 4px;
}

th:last-child {
  border-top-right-radius: 4px;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 4px;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 4px;
}