/*
* 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/
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Dynamic Spacing
* A nice easy way to create a vertical rhythm for section of content
*/
/*
* Accessibility Focus
* Using the focus-visible psuedo class to only show focus styles when the element is focused via the keyboard
*/
.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: var(--wp--preset--color--lightgrey);
  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: 4px;
}
.block-document-table .document-table {
  background: #f5f5f5;
}
.block-document-table table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 16px;
  margin-bottom: 30px;
}
@media (min-width: 1600px) {
  .block-document-table table {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .block-document-table table {
    font-size: 15px;
  }
}
.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 {
  text-transform: unset;
  text-align: left;
  color: var(--wp--preset--color--foreground);
  padding: 10px 20px;
  text-transform: uppercase;
}
.block-document-table table thead tr,
.block-document-table table tfoot tr {
  border-bottom: none;
}
.block-document-table table thead th,
.block-document-table table tfoot th {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  background: var(--wp--preset--color--primary);
  border-bottom: 0;
  line-height: 1.5;
  padding: 12px 20px;
}
@media (min-width: 1600px) {
  .block-document-table table thead th,
  .block-document-table table tfoot th {
    font-size: 17px;
    padding: 14px 25px;
  }
}
@media (max-width: 960px) {
  .block-document-table table thead th,
  .block-document-table table tfoot th {
    font-size: 14px;
    padding: 10px 15px;
  }
}
.block-document-table table thead th.edit {
  text-align: center;
}
.block-document-table table tbody {
  border-bottom: none;
}
.block-document-table table tbody tr td {
  line-height: 1.5;
  vertical-align: middle;
  padding: 12px 20px;
}
@media (min-width: 1600px) {
  .block-document-table table tbody tr td {
    padding: 14px 25px;
  }
}
@media (max-width: 960px) {
  .block-document-table table tbody tr td {
    padding: 10px 15px;
  }
}
.block-document-table table tbody .file_name a {
  display: block;
  color: var(--wp--preset--color--primary);
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.block-document-table table tbody .file_name a:hover {
  text-decoration: none;
  color: var(--wp--preset--color--secondary);
  background: none;
}
@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: 20rem;
  font-size: 16px;
}
@media (max-width: 782px) {
  .block-document-table table tbody .date_published {
    min-width: 12rem;
    font-size: 15px;
  }
}
.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;
}
.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: block;
  text-align: center;
  padding: 1rem;
  margin: -1rem;
  transition: all 0.25s ease-in-out;
}
.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: none;
  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 span,
.block-document-table table tbody .webcast span,
.block-document-table table tbody .presentation span,
.block-document-table table tbody .download span,
.block-document-table table tbody .edit span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--wp--preset--color--primary);
  border-radius: 10rem;
  padding: 0.75rem;
  box-sizing: content-box;
  transition: all 0.25s ease-in-out;
}
.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: 100%;
  height: 100%;
  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: 4px;
}/*# sourceMappingURL=block-document-table.css.map */