@charset "UTF-8";
/*
* Global button styling
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* Breakpoint debugging
*/
/*
* 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2rem 0;
  padding: 0;
  border-bottom: 3px solid var(--wp--preset--color--tertiary);
}
.block-document-table #table-nav div {
  display: inline-block;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  color: var(--wp--preset--color--green);
  position: relative;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
}
.block-document-table #table-nav div::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  width: 100%;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.block-document-table #table-nav div:first-child {
  padding-left: 0;
}
.block-document-table #table-nav div:hover, .block-document-table #table-nav div[aria-selected=true] {
  color: var(--wp--preset--color--tertiary);
}
.block-document-table #table-nav div:hover::before, .block-document-table #table-nav div[aria-selected=true]::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.block-document-table #table-nav div:focus-visible {
  outline: 2px solid var(--wp--preset--color--secondary);
  outline-offset: -2px;
  border-radius: 2px;
}
.block-document-table table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.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 var(--wp--preset--color--primary);
}
.block-document-table table thead th,
.block-document-table table tfoot th {
  font-weight: 600;
  font-size: 1.8rem;
  background: none;
  border-bottom: 0;
  vertical-align: bottom;
}
@media (max-width: 500px) {
  .block-document-table table thead th,
  .block-document-table table tfoot th {
    font-size: 14px;
  }
}
.block-document-table table thead th {
  padding: var(--wp--preset--spacing--small) var(--wp--preset--spacing--x-small);
  font-weight: 700;
  border: 0;
}
.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 {
  width: 12rem;
  text-align: center;
}
.block-document-table table tbody {
  border-bottom: 1px solid var(--wp--preset--color--primary);
}
.block-document-table table tbody tr:nth-child(odd) {
  background: var(--wp--preset--color--light-grey);
}
.block-document-table table tbody tr td {
  border: 0;
  vertical-align: middle;
  padding: var(--wp--preset--spacing--small) var(--wp--preset--spacing--x-small);
}
.block-document-table table tbody tr th {
  font-weight: 500;
}
.block-document-table table tbody .document_date {
  font-weight: 700;
  width: 140px;
}
.block-document-table table tbody .file_name {
  font-size: inherit;
}
.block-document-table table tbody .file_name a {
  display: block;
  color: var(--wp--preset--color--primary);
  margin: -1rem;
  padding: 1rem;
  text-decoration: none;
}
.block-document-table table tbody .file_name a::before {
  content: none;
}
.block-document-table table tbody .file_name a:hover {
  text-decoration: none;
  color: var(--wp--preset--color--tertiary);
}
.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: 10rem;
  font-size: 1.4rem;
}
.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: 12rem;
  text-align: center;
  position: relative;
  font-size: var(--wp--preset--font-size--normal);
}
.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 {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.block-document-table table tbody .report > a svg,
.block-document-table table tbody .webcast > a svg,
.block-document-table table tbody .presentation > a svg,
.block-document-table table tbody .download > a svg,
.block-document-table table tbody .edit > a svg {
  pointer-events: none;
}
.block-document-table table tbody .report > a::before,
.block-document-table table tbody .webcast > a::before,
.block-document-table table tbody .presentation > a::before,
.block-document-table table tbody .download > a::before,
.block-document-table table tbody .edit > a::before {
  content: none;
}
.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--tertiary);
}
.block-document-table table tbody .report > a:focus svg, .block-document-table table tbody .report > a:hover svg,
.block-document-table table tbody .webcast > a:focus svg,
.block-document-table table tbody .webcast > a:hover svg,
.block-document-table table tbody .presentation > a:focus svg,
.block-document-table table tbody .presentation > a:hover svg,
.block-document-table table tbody .download > a:focus svg,
.block-document-table table tbody .download > a:hover svg,
.block-document-table table tbody .edit > a:focus svg,
.block-document-table table tbody .edit > a:hover svg {
  fill: var(--wp--preset--color--tertiary);
}
.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: var(--wp--preset--color--primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.block-document-table table tbody .report .esef-zip,
.block-document-table table tbody .webcast .esef-zip,
.block-document-table table tbody .presentation .esef-zip,
.block-document-table table tbody .download .esef-zip,
.block-document-table table tbody .edit .esef-zip {
  position: relative;
}
.block-document-table table tbody .report .esef-zip::after,
.block-document-table table tbody .webcast .esef-zip::after,
.block-document-table table tbody .presentation .esef-zip::after,
.block-document-table table tbody .download .esef-zip::after,
.block-document-table table tbody .edit .esef-zip::after {
  content: "Download ESEF Zip";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -180%);
          transform: translate(-50%, -180%);
  background: var(--wp--preset--color--primary);
  color: white;
  opacity: 0;
  font-size: var(--wp--preset--font-size--x-small);
  border-radius: 4px;
  white-space: nowrap;
  padding: 0.5em 1em;
  visibility: hidden;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-document-table table tbody .report .esef-zip:hover::after,
.block-document-table table tbody .webcast .esef-zip:hover::after,
.block-document-table table tbody .presentation .esef-zip:hover::after,
.block-document-table table tbody .download .esef-zip:hover::after,
.block-document-table table tbody .edit .esef-zip:hover::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -200%);
          transform: translate(-50%, -200%);
}
.block-document-table table tfoot {
  border-top: 1px solid;
}
.block-document-table table tfoot td {
  background: none;
  border: none;
  font-weight: 700;
}
.block-document-table table figcaption {
  line-height: 1.8;
  margin-top: var(--wp--preset--spacing--x-small);
  font-size: var(--wp--preset--font-size--x-small);
  color: var(--wp--preset--color--foreground);
}
.block-document-table table .document_date {
  min-width: 130px;
}
.block-document-table table a:focus-visible {
  outline: 2px solid var(--wp--preset--color--secondary);
  outline-offset: -2px;
  border-radius: 2px;
}
.block-document-table table tbody tr {
  -webkit-transition: -webkit-box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.block-document-table table tbody tr:hover {
  position: relative;
  -webkit-box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.block-document-table.scroll {
  position: relative;
}
.block-document-table.scroll .table-container {
  overflow: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.block-document-table.scroll .table-container table td {
  font-size: inherit;
}
.block-document-table.scroll:after {
  content: "← Swipe →";
  position: absolute;
  top: 0;
  right: 5%;
  background: var(--wp--preset--color--tertiary);
  border-radius: 1em;
  color: white;
  font-weight: 600;
  font-size: 12px;
  padding: 0.2em 1em;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  opacity: 0.7;
}
.block-document-table.scroll.touch:after {
  opacity: 0.2;
}
@media (max-width: 500px) {
  .block-document-table.scroll:after {
    right: 5%;
  }
}