.tab {
  display: none;
}

.tab.active-tab {
  display: block;
}

.tab-link {
  background-color: transparent;
  color: #737373;
  font-weight: normal;
}

.tab-link.active-tab {
  background-color: #1F1F24;
  color: var(--white);
}

:root {
  --table-header-color: #333;
  --table-cell-color: #666;
  --table-cell-background: #f0f0f0;
  --table-border-color: #ccc;
}


.row-group {
  display: flex;
  align-items: center;
}

.col-group {
  display: flex;
  flex-direction: column;
}

.document-page {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  padding: 40px 20px;
}

.document-page h2 {
  margin: 4rem 0;
  text-align: center;
}

.document-page h4 {
  margin: 2rem 0;
}

.document-page p {
  margin-bottom: 1rem;
}

.document-page a {
  color: #0070f3;
  text-decoration: underline;
  word-break: break-word;
}

.document-page strong {
  display: block;
  margin-top: 1.5rem;
  font-weight: 600;
}

.document-page li {
  list-style: unset;
  list-style-position: inside;
}

@media (min-width: 768px) {
  .document-page {
    padding: 60px;
  }
}