
#nf-field-20-wrap {
	display: none;
}

#nf-field-21-wrap {
	display: none;
}

#nf-field-22-wrap {
	display: none;
}

table {
  --tbl-border:  #e2e5e9;
  --tbl-head-bg: #f7f8fa;
  --tbl-head-fg: #1a1d21;
  --tbl-stripe:  #fafbfc;
  --tbl-hover:   #f0f4f8;
  --tbl-accent:  #f07b05;

  width: 100%;
  margin: 1.75rem 0 2.5rem;
  border: 1px solid var(--tbl-border);
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.55;
}

table caption {
  padding-bottom: 0.6rem;

  opacity: 0.7;
  text-align: left;
}

table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 0.8rem 1rem;
  border-bottom: 2px solid var(--tbl-accent);
  background: var(--tbl-head-bg);
  color: var(--tbl-head-fg);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: left;
  white-space: nowrap;
}

table tbody td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--tbl-border);
  vertical-align: top;
}

table tbody td:first-child {
  border-left: 3px solid transparent;
  font-weight: 600;
}

table tbody td:not(:first-child) {
  font-variant-numeric: tabular-nums;
}

table tbody tr:nth-child(even) {
  background: var(--tbl-stripe);
}

table tbody tr:last-child td {
  border-bottom: 0;
}

table tbody tr:hover {
  background: var(--tbl-hover);
}

table tbody tr:hover td:first-child {
  border-left-color: var(--tbl-accent);
}

@media (max-width: 700px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  table tbody td {
    min-width: 11rem;
    white-space: normal;
  }
}
