/* Mixins
================================================== */
/* Breakpoints
================================================== */
/* Tables
================================================== */
table {
  border: none;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  font-size: 0.9em;
  color: var(--color-dark-grey);
  border: 1px solid #ccc;
}
table tr {
  border: none;
  border-bottom: 1px solid #ccc;
}
table tbody > tr:nth-child(odd) {
  background-color: #f7f7f7;
}
table th,
table td {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  width: auto;
  padding: 0.5em;
  text-align: left;
}

/* Responsive
================================================== */
.table-outer {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.table-outer.overflow .table-scroll {
  overflow-x: scroll;
  overflow-y: hidden;
  margin-bottom: -1em;
}
.table-outer.overflow:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3em;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  opacity: 0.5;
}

.tablepress td, .tablepress th {
  width: 6em;
}

@media screen and (max-width: 768px) {
  .table-collapse {
    border: 0;
  }
  .table-collapse thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table-collapse tr {
    margin-bottom: 2em;
    display: block;
  }
  .table-collapse td {
    display: block;
    font-size: 0.8em;
    text-align: right;
  }
  .table-collapse td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
}
.responsive-table a[href*=http] {
  word-break: break-all;
}

@media screen and (max-width: 479px) {
  table.responsive-table tr {
    display: block;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  table.responsive-table td {
    display: block;
    width: 100%;
  }

  table.responsive-table .th,
table.responsive-table th {
    display: none;
  }
}
/*# sourceMappingURL=tables.css.map */