/*
* 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/
*/
.wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 0px;
  font-size: 16px;
  margin-bottom: 2rem;
}
.wp-block-table table + h2, .wp-block-table table + h3, .wp-block-table table + h4, .wp-block-table table + h5, .wp-block-table table + h6 {
  margin-top: 3rem;
}
.wp-block-table table thead,
.wp-block-table table tfoot {
  color: black;
  text-transform: unset;
}
.wp-block-table table thead th,
.wp-block-table table tfoot th {
  font-weight: 600;
  font-size: 1.8rem;
  background: none;
  border-bottom: 0;
}
.wp-block-table table thead {
  border-bottom: 2px solid var(--wp--preset--color--primary);
}
.wp-block-table table thead th {
  text-align: left;
  padding: 1rem;
  color: var(--wp--preset--color--primary);
  border: 0;
  border-bottom: 1px solid var(--wp--preset--color--primary);
  margin-right: 5px;
  font-weight: 500;
}
.wp-block-table table thead th.report, .wp-block-table table thead th.webcast, .wp-block-table table thead th.presentation, .wp-block-table table thead th.download, .wp-block-table table thead th.edit {
  width: auto;
  text-align: center;
}
.wp-block-table table tbody tr:nth-child(odd) {
  background: rgba(71, 213, 242, 0.05);
}
.wp-block-table table tbody tr td {
  vertical-align: middle;
  padding: 1rem;
  border: 0;
}
.wp-block-table table tbody tr th {
  font-weight: 500;
}
.wp-block-table table tbody .file_name a {
  display: block;
  color: var(--wp--preset--color--primary);
  margin: -1rem;
  padding: 1rem;
  text-decoration: none;
}
.wp-block-table table tbody .file_name a:hover {
  text-decoration: none;
  color: white;
  background: var(--wp--preset--color--secondary);
}
@media (max-width: 782px) {
  .wp-block-table table tbody .file_name {
    min-width: 200px;
  }
}
.wp-block-table table tbody .file_size {
  width: 12rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 782px) {
  .wp-block-table table tbody .file_size {
    min-width: 9rem;
  }
}
.wp-block-table table tbody .date_published {
  width: 17rem;
  font-size: 1.4rem;
}
@media (max-width: 782px) {
  .wp-block-table table tbody .date_published {
    min-width: 12rem;
  }
}
.wp-block-table table tbody .client-name p {
  font-size: 2.2rem;
  color: var(--wp--preset--color--primary);
}
.wp-block-table table tbody .title p {
  margin-bottom: 10px;
  font-size: 2.2rem;
  color: #000;
}
.wp-block-table table tbody .title p a {
  color: #000;
  transition: 0.2s ease-in-out;
}
.wp-block-table table tbody .title p a:hover {
  color: var(--wp--preset--color--secondary);
}
.wp-block-table table tbody .title span {
  text-transform: uppercase;
  font-size: 1.6rem;
  color: var(--wp--preset--color--primary);
}
.wp-block-table table tbody .download {
  border-left: 5px solid #fff;
}
.wp-block-table table tbody .report,
.wp-block-table table tbody .webcast,
.wp-block-table table tbody .presentation,
.wp-block-table table tbody .download,
.wp-block-table table tbody .edit {
  width: auto;
  text-align: center;
  position: relative;
}
.wp-block-table table tbody .report > a,
.wp-block-table table tbody .webcast > a,
.wp-block-table table tbody .presentation > a,
.wp-block-table table tbody .download > a,
.wp-block-table table tbody .edit > a {
  position: relative;
  left: 0;
  top: 0;
  width: 80%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 0;
  transition: all 0.25s ease-in-out;
}
.wp-block-table table tbody .report > a:focus svg path, .wp-block-table table tbody .report > a:hover svg path,
.wp-block-table table tbody .webcast > a:focus svg path,
.wp-block-table table tbody .webcast > a:hover svg path,
.wp-block-table table tbody .presentation > a:focus svg path,
.wp-block-table table tbody .presentation > a:hover svg path,
.wp-block-table table tbody .download > a:focus svg path,
.wp-block-table table tbody .download > a:hover svg path,
.wp-block-table table tbody .edit > a:focus svg path,
.wp-block-table table tbody .edit > a:hover svg path {
  fill: var(--wp--preset--color--primary);
}
.wp-block-table table tbody .report > a:focus svg #Path_782, .wp-block-table table tbody .report > a:hover svg #Path_782,
.wp-block-table table tbody .webcast > a:focus svg #Path_782,
.wp-block-table table tbody .webcast > a:hover svg #Path_782,
.wp-block-table table tbody .presentation > a:focus svg #Path_782,
.wp-block-table table tbody .presentation > a:hover svg #Path_782,
.wp-block-table table tbody .download > a:focus svg #Path_782,
.wp-block-table table tbody .download > a:hover svg #Path_782,
.wp-block-table table tbody .edit > a:focus svg #Path_782,
.wp-block-table table tbody .edit > a:hover svg #Path_782 {
  stroke: var(--wp--preset--color--primary);
}
.wp-block-table table tbody .report svg,
.wp-block-table table tbody .webcast svg,
.wp-block-table table tbody .presentation svg,
.wp-block-table table tbody .download svg,
.wp-block-table table tbody .edit svg {
  width: 25px;
  height: auto;
  fill: var(--wp--preset--color--primary);
  transition: all 0.25s ease-in-out;
}
.wp-block-table table tfoot th {
  background: none;
}

.block-row {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.block-row.has-padding {
  padding: 3rem;
}
.block-row .row-bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.6);
}
.block-row .acf-innerblocks-container > * + * {
  margin-top: 2rem;
  margin-bottom: 0;
}
