@charset "UTF-8";
/*Font Family SCSS Vars
$primaryFont: "ubuntu", sans-serif;
$secondaryFont: "canada-type-gibson";
$systemFonts: "system-ui", "Segoe UI", "Roboto", "Helvetica", "Arial", sans-serif,
  "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";\
*/
/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
.block-document-table #table-nav {
  display: flex;
  margin: 2rem 0 0 0;
  padding: 2rem 1rem 1rem;
  background: #000;
}
.block-document-table #table-nav div {
  display: inline-block;
  padding: 0.5em 1em;
  position: relative;
  cursor: pointer;
  margin-right: 0.5em;
  font-weight: 600;
}
.block-document-table #table-nav div:before, .block-document-table #table-nav div:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--wp--preset--color--foreground);
}
.block-document-table #table-nav div:after {
  right: unset;
  width: 0;
  height: 3px;
  background: var(--wp--preset--gradient--rainbow);
  transition: width 0.25s ease-in-out;
}
.block-document-table #table-nav div:hover, .block-document-table #table-nav div[aria-selected=true] {
  color: #fff;
}
.block-document-table #table-nav div:hover:after, .block-document-table #table-nav div[aria-selected=true]:after {
  width: 100%;
}
.block-document-table #table-nav div:focus-visible {
  outline: 2px solid var(--wp--preset--color--pale-blue);
  outline-offset: -2px;
  border-radius: 2px;
}
.block-document-table table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 16px;
  margin-bottom: 2rem;
}
.block-document-table table + h2, .block-document-table table + h3, .block-document-table table + h4, .block-document-table table + h5, .block-document-table table + h6 {
  margin-top: 3rem;
}
.block-document-table table thead,
.block-document-table table tfoot {
  color: black;
  text-transform: unset;
}
.block-document-table table thead tr,
.block-document-table table tfoot tr {
  border-bottom: 3px solid #000;
}
.block-document-table table thead th,
.block-document-table table tfoot th {
  font-weight: 600;
  font-size: 1.8rem;
  background: none;
  border-bottom: 0;
  border: none;
}
.block-document-table table thead th {
  text-align: left;
  padding: 1rem 0.75rem;
  color: #000;
  font-weight: 700;
}
.block-document-table table thead th.report, .block-document-table table thead th.webcast, .block-document-table table thead th.presentation, .block-document-table table thead th.download, .block-document-table table thead th.edit {
  text-align: center;
}
.block-document-table table thead th.has-text-align-center {
  text-align: center;
}
.block-document-table table thead th.download {
  width: 2.5rem;
}
.block-document-table table tbody {
  border-bottom: 2px solid #000;
}
.block-document-table table tbody tr {
  border-bottom: 1px solid rgba(103, 103, 103, 0.1490196078);
}
.block-document-table table tbody tr td {
  vertical-align: middle;
  padding: 1rem 0.75rem;
  border: none;
}
.block-document-table table tbody tr th {
  font-weight: 500;
}
.block-document-table table tbody .file_name a {
  display: block;
  color: var(--wp--preset--color--orange);
  margin: -1rem;
  padding: 1rem;
  text-decoration: none;
}
.block-document-table table tbody .file_name a:hover {
  text-decoration: none;
  color: white;
  background: var(--wp--preset--color--pale-blue);
}
@media (max-width: 782px) {
  .block-document-table table tbody .file_name {
    min-width: 200px;
  }
}
.block-document-table table tbody .file_size {
  width: 12rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 782px) {
  .block-document-table table tbody .file_size {
    min-width: 9rem;
  }
}
.block-document-table table tbody .date_published {
  width: 17rem;
  font-size: 1.4rem;
}
@media (max-width: 782px) {
  .block-document-table table tbody .date_published {
    min-width: 12rem;
  }
}
.block-document-table table tbody .report,
.block-document-table table tbody .webcast,
.block-document-table table tbody .presentation,
.block-document-table table tbody .download,
.block-document-table table tbody .edit {
  width: 40px;
  text-align: center;
  position: relative;
  white-space: nowrap;
}
.block-document-table table tbody .report .doc-table-link,
.block-document-table table tbody .webcast .doc-table-link,
.block-document-table table tbody .presentation .doc-table-link,
.block-document-table table tbody .download .doc-table-link,
.block-document-table table tbody .edit .doc-table-link {
  width: 40px;
  height: 40px;
  background: #000;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  justify-content: center;
}
.block-document-table table tbody .report .doc-table-link:hover,
.block-document-table table tbody .webcast .doc-table-link:hover,
.block-document-table table tbody .presentation .doc-table-link:hover,
.block-document-table table tbody .download .doc-table-link:hover,
.block-document-table table tbody .edit .doc-table-link:hover {
  background: var(--wp--preset--color--orange);
}
.block-document-table table tbody .report > a,
.block-document-table table tbody .webcast > a,
.block-document-table table tbody .presentation > a,
.block-document-table table tbody .download > a,
.block-document-table table tbody .edit > a {
  display: inline-block;
  margin: 0 3px;
}
.block-document-table table tbody .report > a:focus, .block-document-table table tbody .report > a:hover,
.block-document-table table tbody .webcast > a:focus,
.block-document-table table tbody .webcast > a:hover,
.block-document-table table tbody .presentation > a:focus,
.block-document-table table tbody .presentation > a:hover,
.block-document-table table tbody .download > a:focus,
.block-document-table table tbody .download > a:hover,
.block-document-table table tbody .edit > a:focus,
.block-document-table table tbody .edit > a:hover {
  color: var(--wp--preset--color--pale-blue);
}
.block-document-table table tbody .report svg,
.block-document-table table tbody .webcast svg,
.block-document-table table tbody .presentation svg,
.block-document-table table tbody .download svg,
.block-document-table table tbody .edit svg {
  width: 25px;
  height: 20px;
  fill: white;
  transition: all 0.25s ease-in-out;
}
.block-document-table table tfoot th {
  background: none;
}
.block-document-table table a:focus-visible {
  outline: 2px solid var(--wp--preset--color--pale-blue);
  outline-offset: -2px;
  border-radius: 2px;
}
@media (max-width: 782px) {
  .block-document-table.scroll {
    position: relative;
  }
  .block-document-table.scroll .table-container {
    overflow: scroll;
  }
  .block-document-table.scroll table,
  .block-document-table.scroll #table-nav {
    min-width: 768px;
  }
  .block-document-table.scroll:after {
    content: "← Swipe →";
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    background: var(--wp--preset--color--violet);
    border-radius: 1em;
    color: white;
    font-weight: 600;
    font-size: 12px;
    padding: 0.2em 1em;
    transition: 0.2s ease;
    opacity: 0.7;
  }
  .block-document-table.scroll.touch:after {
    opacity: 0.2;
  }
}
