.wp-block-table {
  margin-bottom: var(--rh--size--general--margin--bottom);
}
.wp-block-table.has-fixed-layout {
  table-layout: fixed;
  width: 100%;
}
.wp-block-table.alignleft, .wp-block-table.aligncenter, .wp-block-table.is-content-justification-center, .wp-block-table.alignright {
  display: table;
  width: auto;
}
.wp-block-table.is-style-stripes {
  background-color: rgba(0, 0, 0, 0);
  border-collapse: inherit;
  border-spacing: 0;
}
.wp-block-table.is-style-stripes tbody > tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.1);
}
.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
  border-color: rgba(0, 0, 0, 0);
  padding: 0.5rem;
}
@media only screen and (min-width: 840px) {
  .wp-block-table.is-style-stripes td,
  .wp-block-table.is-style-stripes th {
    padding: 1rem;
  }
}
.wp-block-table.is-style-stripes th {
  border-bottom: 3px solid currentColor;
}
.wp-block-table.is-style-stripes tfoot td {
  border-top: 3px solid currentColor;
}
.wp-block-table:last-child {
  margin-bottom: 0;
}
