/**
 * TablePress styles.
 * Values are controlled from ACF Options > Constant field > TablePress.
 */
.dt-container,
.tablepress-wrapper {
  margin: 24px 0;
}

.tablepress,
table.tablepress,
.tablepress-style,
table.tablepress.tablepress-style,
.dark-table,
table.tablepress.dark-table {
  width: 100%;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--tablepress-border-color, rgba(255, 255, 255, 0.4705882353)) !important;
  border-radius: var(--tablepress-border-radius, 10px);
  border-collapse: separate !important;
  border-spacing: 0;
  background: var(--tablepress-table-bg, transparent);
  color: var(--tablepress-text-color, #fff);
  font-size: var(--tablepress-font-size, 16px);
}
.tablepress thead th,
table.tablepress thead th,
.tablepress-style thead th,
table.tablepress.tablepress-style thead th,
.dark-table thead th,
table.tablepress.dark-table thead th {
  padding: 14px 16px;
  border-bottom: 1px solid var(--tablepress-border-color, rgba(255, 255, 255, 0.4705882353));
  border-right: 1px solid var(--tablepress-border-color, rgba(255, 255, 255, 0.4705882353));
  background: var(--tablepress-thead-bg, #000);
  color: var(--tablepress-text-color, #fff);
  font-size: inherit;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}
.tablepress thead th:last-child,
table.tablepress thead th:last-child,
.tablepress-style thead th:last-child,
table.tablepress.tablepress-style thead th:last-child,
.dark-table thead th:last-child,
table.tablepress.dark-table thead th:last-child {
  border-right: 0;
}
.tablepress tbody tr td,
table.tablepress tbody tr td,
.tablepress-style tbody tr td,
table.tablepress.tablepress-style tbody tr td,
.dark-table tbody tr td,
table.tablepress.dark-table tbody tr td {
  padding: 12px 16px;
  border-top: 0;
  border-right: 1px solid var(--tablepress-border-color, rgba(255, 255, 255, 0.4705882353));
  border-bottom: 1px solid var(--tablepress-border-color, rgba(255, 255, 255, 0.4705882353));
  background: transparent;
  color: var(--tablepress-text-color, #fff);
  font-size: inherit;
  line-height: 1.45;
  vertical-align: top;
}
.tablepress tbody tr td:last-child,
table.tablepress tbody tr td:last-child,
.tablepress-style tbody tr td:last-child,
table.tablepress.tablepress-style tbody tr td:last-child,
.dark-table tbody tr td:last-child,
table.tablepress.dark-table tbody tr td:last-child {
  border-right: 0;
}
.tablepress tbody tr:last-child td,
table.tablepress tbody tr:last-child td,
.tablepress-style tbody tr:last-child td,
table.tablepress.tablepress-style tbody tr:last-child td,
.dark-table tbody tr:last-child td,
table.tablepress.dark-table tbody tr:last-child td {
  border-bottom: 0;
}

.tablepress > :where(thead, tbody) > * > *,
table.tablepress > :where(thead, tbody) > * > * {
  color: var(--tablepress-text-color, #fff);
}

.dt-container .tablepress {
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .dt-container,
  .tablepress-wrapper {
    overflow-x: auto;
  }
  .tablepress,
  table.tablepress {
    min-width: 560px;
  }
}

/*# sourceMappingURL=tablepress.css.map */
