/*
* 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: 0;
}
.block-document-table #table-nav div {
  display: inline-block;
  padding: 0.5em 1em;
  background: #f5f5f5;
  cursor: pointer;
  margin-right: 0.5em;
}
.block-document-table #table-nav div:hover, .block-document-table #table-nav div[aria-selected=true] {
  background: var(--wp--preset--color--primary);
  color: #fff;
}
.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 .document-table {
  background: #f5f5f5;
}
.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 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;
}
.block-document-table table thead th {
  text-align: left;
  padding: 1rem;
  color: var(--wp--preset--color--secondary);
  text-transform: uppercase;
  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 {
  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 td {
  padding: 1rem;
  vertical-align: middle;
  width: 20%;
}
.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--primary);
  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--secondary);
}
@media (max-width: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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 {
  position: relative;
  width: 12rem;
  text-align: center;
}
.block-document-table table tbody .report:has(a.writtenLink),
.block-document-table table tbody .webcast:has(a.writtenLink),
.block-document-table table tbody .presentation:has(a.writtenLink),
.block-document-table table tbody .download:has(a.writtenLink),
.block-document-table table tbody .edit:has(a.writtenLink) {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 0.4rem;
}
@media (max-width: 767px) {
  .block-document-table table tbody .report:has(a.writtenLink),
  .block-document-table table tbody .webcast:has(a.writtenLink),
  .block-document-table table tbody .presentation:has(a.writtenLink),
  .block-document-table table tbody .download:has(a.writtenLink),
  .block-document-table table tbody .edit:has(a.writtenLink) {
    flex-direction: column;
    align-items: flex-end;
  }
}
.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 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: -1px;
  padding: 1rem;
  transition: all 0.25s ease-in-out;
}
.block-document-table table tbody .report > a.writtenLink,
.block-document-table table tbody .webcast > a.writtenLink,
.block-document-table table tbody .presentation > a.writtenLink,
.block-document-table table tbody .download > a.writtenLink,
.block-document-table table tbody .edit > a.writtenLink {
  position: relative;
  justify-content: flex-start;
  width: auto;
  text-align: left;
  text-decoration: none;
}
.block-document-table table tbody .report > a.writtenLink:focus, .block-document-table table tbody .report > a.writtenLink:hover,
.block-document-table table tbody .webcast > a.writtenLink:focus,
.block-document-table table tbody .webcast > a.writtenLink:hover,
.block-document-table table tbody .presentation > a.writtenLink:focus,
.block-document-table table tbody .presentation > a.writtenLink:hover,
.block-document-table table tbody .download > a.writtenLink:focus,
.block-document-table table tbody .download > a.writtenLink:hover,
.block-document-table table tbody .edit > a.writtenLink:focus,
.block-document-table table tbody .edit > a.writtenLink:hover {
  background: transparent !important;
  color: var(--wp--preset--color--secondary);
}
@media (max-width: 767px) {
  .block-document-table table tbody .report > a.writtenLink,
  .block-document-table table tbody .webcast > a.writtenLink,
  .block-document-table table tbody .presentation > a.writtenLink,
  .block-document-table table tbody .download > a.writtenLink,
  .block-document-table table tbody .edit > a.writtenLink {
    text-align: right;
  }
}
.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 {
  background: var(--wp--preset--color--tertiary);
  color: var(--wp--preset--color--secondary);
}
.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--primary);
}
.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 {
  position: relative;
  pointer-events: none;
  z-index: 1;
  width: 40px;
  height: 20px;
  fill: var(--wp--preset--color--primary);
  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--secondary);
  outline-offset: -2px;
  border-radius: 2px;
}/*# sourceMappingURL=block-document-table.css.map */