/*
* 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-button,
.btn {
  overflow: hidden;
  border: 0;
  outline: 0;
  text-align: center;
  padding: 1.5rem 2rem;
  color: #fff;
  background: var(--wp--preset--color--primary);
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--normal);
  font-family: "Red Hat Display";
  line-height: 1;
  position: relative;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  gap: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.4rem;
}
.block-button svg,
.block-button span,
.btn svg,
.btn span {
  z-index: 2;
  position: relative;
}
.block-button svg path,
.block-button span path,
.btn svg path,
.btn span path {
  fill: #fff;
}
.block-button svg,
.btn svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}
.block-button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--wp--preset--color--secondary);
  outline-offset: 0.5rem;
}
.block-button:hover, .block-button:active, .block-button:focus,
.btn:hover,
.btn:active,
.btn:focus {
  text-decoration: none;
  background: var(--wp--preset--color--tertiary);
  color: var(--wp--preset--color--primary);
}
.block-button:hover svg,
.block-button:hover span, .block-button:active svg,
.block-button:active span, .block-button:focus svg,
.block-button:focus span,
.btn:hover svg,
.btn:hover span,
.btn:active svg,
.btn:active span,
.btn:focus svg,
.btn:focus span {
  color: var(--wp--preset--color--primary);
}
.block-button:hover svg path,
.block-button:hover span path, .block-button:active svg path,
.block-button:active span path, .block-button:focus svg path,
.block-button:focus span path,
.btn:hover svg path,
.btn:hover span path,
.btn:active svg path,
.btn:active span path,
.btn:focus svg path,
.btn:focus span path {
  fill: var(--wp--preset--color--primary);
}
.block-button.back-to-clients,
.btn.back-to-clients {
  background-color: transparent;
  padding: 0px;
  color: var(--wp--preset--color--secondary);
  transition: all 0.2s ease-in-out;
}
.block-button.back-to-clients svg,
.btn.back-to-clients svg {
  width: 20px;
  transition: all 0.2s ease-in-out;
}
.block-button.back-to-clients:hover,
.btn.back-to-clients:hover {
  background-color: transparent;
}
.block-button.back-to-clients:hover svg,
.btn.back-to-clients:hover svg {
  transform: translate(10px, 0);
}
.block-button.back-to-clients:hover svg path,
.btn.back-to-clients:hover svg path {
  fill: transparent;
}
.block-button.company-website-button,
.btn.company-website-button {
  background: var(--wp--preset--color--secondary);
  width: 100%;
  text-align: center;
  margin: 3rem 0;
}
.block-button.company-website-button:hover,
.btn.company-website-button:hover {
  background-color: var(--wp--preset--color--primary);
  color: #fff;
}
.block-button.company-website-button:hover svg,
.block-button.company-website-button:hover span,
.btn.company-website-button:hover svg,
.btn.company-website-button:hover span {
  color: #fff;
}
.block-button.company-website-button:hover svg path,
.block-button.company-website-button:hover span path,
.btn.company-website-button:hover svg path,
.btn.company-website-button:hover span path {
  fill: #fff;
}
.block-button.button-primary,
.btn.button-primary {
  background: var(--wp--preset--color--secondary);
  color: #fff;
  border: 1px solid var(--wp--preset--color--secondary) !important;
}
.block-button.button-primary path,
.btn.button-primary path {
  fill: #fff;
}
.block-button.button-primary:hover, .block-button.button-primary:active, .block-button.button-primary:focus,
.btn.button-primary:hover,
.btn.button-primary:active,
.btn.button-primary:focus {
  background: #fff;
  color: var(--wp--preset--color--secondary);
  border: 1px solid #fff !important;
}
.block-button.button-primary:hover svg,
.block-button.button-primary:hover span, .block-button.button-primary:active svg,
.block-button.button-primary:active span, .block-button.button-primary:focus svg,
.block-button.button-primary:focus span,
.btn.button-primary:hover svg,
.btn.button-primary:hover span,
.btn.button-primary:active svg,
.btn.button-primary:active span,
.btn.button-primary:focus svg,
.btn.button-primary:focus span {
  color: #fff;
}
.block-button.button-primary:hover svg path,
.block-button.button-primary:hover span path, .block-button.button-primary:active svg path,
.block-button.button-primary:active span path, .block-button.button-primary:focus svg path,
.block-button.button-primary:focus span path,
.btn.button-primary:hover svg path,
.btn.button-primary:hover span path,
.btn.button-primary:active svg path,
.btn.button-primary:active span path,
.btn.button-primary:focus svg path,
.btn.button-primary:focus span path {
  fill: #fff;
}
.block-button.btn-primary, .block-button.is-style-btn-primary,
.btn.btn-primary,
.btn.is-style-btn-primary {
  color: var(--wp--preset--color--foreground);
  background: var(--wp--preset--color--tertiary);
}
.block-button.btn-primary path, .block-button.is-style-btn-primary path,
.btn.btn-primary path,
.btn.is-style-btn-primary path {
  fill: var(--wp--preset--color--foreground);
}
.block-button.btn-primary:hover, .block-button.btn-primary:active, .block-button.btn-primary:focus, .block-button.is-style-btn-primary:hover, .block-button.is-style-btn-primary:active, .block-button.is-style-btn-primary:focus,
.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn.is-style-btn-primary:hover,
.btn.is-style-btn-primary:active,
.btn.is-style-btn-primary:focus {
  background: var(--wp--preset--color--foreground);
}
.block-button.btn-primary:hover svg,
.block-button.btn-primary:hover span, .block-button.btn-primary:active svg,
.block-button.btn-primary:active span, .block-button.btn-primary:focus svg,
.block-button.btn-primary:focus span, .block-button.is-style-btn-primary:hover svg,
.block-button.is-style-btn-primary:hover span, .block-button.is-style-btn-primary:active svg,
.block-button.is-style-btn-primary:active span, .block-button.is-style-btn-primary:focus svg,
.block-button.is-style-btn-primary:focus span,
.btn.btn-primary:hover svg,
.btn.btn-primary:hover span,
.btn.btn-primary:active svg,
.btn.btn-primary:active span,
.btn.btn-primary:focus svg,
.btn.btn-primary:focus span,
.btn.is-style-btn-primary:hover svg,
.btn.is-style-btn-primary:hover span,
.btn.is-style-btn-primary:active svg,
.btn.is-style-btn-primary:active span,
.btn.is-style-btn-primary:focus svg,
.btn.is-style-btn-primary:focus span {
  color: var(--wp--preset--color--tertiary);
}
.block-button.btn-primary:hover svg path,
.block-button.btn-primary:hover span path, .block-button.btn-primary:active svg path,
.block-button.btn-primary:active span path, .block-button.btn-primary:focus svg path,
.block-button.btn-primary:focus span path, .block-button.is-style-btn-primary:hover svg path,
.block-button.is-style-btn-primary:hover span path, .block-button.is-style-btn-primary:active svg path,
.block-button.is-style-btn-primary:active span path, .block-button.is-style-btn-primary:focus svg path,
.block-button.is-style-btn-primary:focus span path,
.btn.btn-primary:hover svg path,
.btn.btn-primary:hover span path,
.btn.btn-primary:active svg path,
.btn.btn-primary:active span path,
.btn.btn-primary:focus svg path,
.btn.btn-primary:focus span path,
.btn.is-style-btn-primary:hover svg path,
.btn.is-style-btn-primary:hover span path,
.btn.is-style-btn-primary:active svg path,
.btn.is-style-btn-primary:active span path,
.btn.is-style-btn-primary:focus svg path,
.btn.is-style-btn-primary:focus span path {
  fill: var(--wp--preset--color--tertiary);
}
.block-button.btn-secondary, .block-button.is-style-btn-secondary,
.btn.btn-secondary,
.btn.is-style-btn-secondary {
  background: var(--wp--preset--color--secondary);
  color: #fff;
}
.block-button.btn-secondary path, .block-button.is-style-btn-secondary path,
.btn.btn-secondary path,
.btn.is-style-btn-secondary path {
  fill: #fff;
}
.block-button.btn-secondary:hover, .block-button.btn-secondary:active, .block-button.btn-secondary:focus, .block-button.is-style-btn-secondary:hover, .block-button.is-style-btn-secondary:active, .block-button.is-style-btn-secondary:focus,
.btn.btn-secondary:hover,
.btn.btn-secondary:active,
.btn.btn-secondary:focus,
.btn.is-style-btn-secondary:hover,
.btn.is-style-btn-secondary:active,
.btn.is-style-btn-secondary:focus {
  background: var(--wp--preset--color--primary);
}
.block-button.btn-secondary:hover svg,
.block-button.btn-secondary:hover span, .block-button.btn-secondary:active svg,
.block-button.btn-secondary:active span, .block-button.btn-secondary:focus svg,
.block-button.btn-secondary:focus span, .block-button.is-style-btn-secondary:hover svg,
.block-button.is-style-btn-secondary:hover span, .block-button.is-style-btn-secondary:active svg,
.block-button.is-style-btn-secondary:active span, .block-button.is-style-btn-secondary:focus svg,
.block-button.is-style-btn-secondary:focus span,
.btn.btn-secondary:hover svg,
.btn.btn-secondary:hover span,
.btn.btn-secondary:active svg,
.btn.btn-secondary:active span,
.btn.btn-secondary:focus svg,
.btn.btn-secondary:focus span,
.btn.is-style-btn-secondary:hover svg,
.btn.is-style-btn-secondary:hover span,
.btn.is-style-btn-secondary:active svg,
.btn.is-style-btn-secondary:active span,
.btn.is-style-btn-secondary:focus svg,
.btn.is-style-btn-secondary:focus span {
  color: #fff;
}
.block-button.btn-secondary:hover svg path,
.block-button.btn-secondary:hover span path, .block-button.btn-secondary:active svg path,
.block-button.btn-secondary:active span path, .block-button.btn-secondary:focus svg path,
.block-button.btn-secondary:focus span path, .block-button.is-style-btn-secondary:hover svg path,
.block-button.is-style-btn-secondary:hover span path, .block-button.is-style-btn-secondary:active svg path,
.block-button.is-style-btn-secondary:active span path, .block-button.is-style-btn-secondary:focus svg path,
.block-button.is-style-btn-secondary:focus span path,
.btn.btn-secondary:hover svg path,
.btn.btn-secondary:hover span path,
.btn.btn-secondary:active svg path,
.btn.btn-secondary:active span path,
.btn.btn-secondary:focus svg path,
.btn.btn-secondary:focus span path,
.btn.is-style-btn-secondary:hover svg path,
.btn.is-style-btn-secondary:hover span path,
.btn.is-style-btn-secondary:active svg path,
.btn.is-style-btn-secondary:active span path,
.btn.is-style-btn-secondary:focus svg path,
.btn.is-style-btn-secondary:focus span path {
  fill: #fff;
}
.block-button.btn-white, .block-button.is-style-btn-white,
.btn.btn-white,
.btn.is-style-btn-white {
  background: #fff;
  color: var(--wp--preset--color--foreground);
}
.block-button.btn-white path, .block-button.is-style-btn-white path,
.btn.btn-white path,
.btn.is-style-btn-white path {
  fill: var(--wp--preset--color--foreground);
}
.block-button.btn-white:hover, .block-button.btn-white:active, .block-button.btn-white:focus, .block-button.is-style-btn-white:hover, .block-button.is-style-btn-white:active, .block-button.is-style-btn-white:focus,
.btn.btn-white:hover,
.btn.btn-white:active,
.btn.btn-white:focus,
.btn.is-style-btn-white:hover,
.btn.is-style-btn-white:active,
.btn.is-style-btn-white:focus {
  background: var(--wp--preset--color--foreground);
}
.block-button.btn-white:hover svg,
.block-button.btn-white:hover span, .block-button.btn-white:active svg,
.block-button.btn-white:active span, .block-button.btn-white:focus svg,
.block-button.btn-white:focus span, .block-button.is-style-btn-white:hover svg,
.block-button.is-style-btn-white:hover span, .block-button.is-style-btn-white:active svg,
.block-button.is-style-btn-white:active span, .block-button.is-style-btn-white:focus svg,
.block-button.is-style-btn-white:focus span,
.btn.btn-white:hover svg,
.btn.btn-white:hover span,
.btn.btn-white:active svg,
.btn.btn-white:active span,
.btn.btn-white:focus svg,
.btn.btn-white:focus span,
.btn.is-style-btn-white:hover svg,
.btn.is-style-btn-white:hover span,
.btn.is-style-btn-white:active svg,
.btn.is-style-btn-white:active span,
.btn.is-style-btn-white:focus svg,
.btn.is-style-btn-white:focus span {
  color: #fff;
}
.block-button.btn-white:hover svg path,
.block-button.btn-white:hover span path, .block-button.btn-white:active svg path,
.block-button.btn-white:active span path, .block-button.btn-white:focus svg path,
.block-button.btn-white:focus span path, .block-button.is-style-btn-white:hover svg path,
.block-button.is-style-btn-white:hover span path, .block-button.is-style-btn-white:active svg path,
.block-button.is-style-btn-white:active span path, .block-button.is-style-btn-white:focus svg path,
.block-button.is-style-btn-white:focus span path,
.btn.btn-white:hover svg path,
.btn.btn-white:hover span path,
.btn.btn-white:active svg path,
.btn.btn-white:active span path,
.btn.btn-white:focus svg path,
.btn.btn-white:focus span path,
.btn.is-style-btn-white:hover svg path,
.btn.is-style-btn-white:hover span path,
.btn.is-style-btn-white:active svg path,
.btn.is-style-btn-white:active span path,
.btn.is-style-btn-white:focus svg path,
.btn.is-style-btn-white:focus span path {
  fill: #fff;
}
.block-button.facetwp-load-more,
.btn.facetwp-load-more {
  background-color: var(--wp--preset--color--secondary);
  background-image: url(../img/custom/show-more.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding: 1.5rem 5.5rem 1.5rem 2rem;
}
.block-button.facetwp-load-more:hover, .block-button.facetwp-load-more:focus,
.btn.facetwp-load-more:hover,
.btn.facetwp-load-more:focus {
  color: #fff;
  background-color: var(--wp--preset--color--primary);
}
.block-button.full-width,
.btn.full-width {
  display: block;
}
.block-button.aligncenter, .block-button.center,
.btn.aligncenter,
.btn.center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}
.block-button.large-padding,
.btn.large-padding {
  padding: 2.5rem 2rem;
}
