/*
* 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-products-chart {
  display: grid;
  grid-template-rows: auto;
  position: relative;
  grid-template-columns: repeat(8, 1fr);
  margin-bottom: var(--wp--preset--spacing--x-large) !important;
  --border-style: 1px dashed rgba(255, 255, 255, 0.3);
  --cell-padding: var(--wp--preset--spacing--normal) 0.5em;
}
.block-products-chart.has-partners {
  grid-template-columns: repeat(8, 1fr) 180px;
}
@media screen and (max-width: 900px) {
  .block-products-chart.has-partners {
    grid-template-columns: repeat(6, 1fr);
  }
}
.block-products-chart .product-header-title {
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-left: var(--border-style);
  border-bottom: var(--border-style);
  padding: var(--cell-padding);
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--small);
}
.block-products-chart .products-header__blank {
  grid-column: 1;
  border-left: 0;
}
.block-products-chart .products-header__target {
  grid-column: 2;
}
.block-products-chart .products-header__indication {
  grid-column: 3;
}
.block-products-chart .products-header__pre-clinical {
  grid-column: 4;
}
.block-products-chart .products-header__phase-i {
  grid-column: 5;
}
.block-products-chart .products-header__phase-iia {
  grid-column: 6;
}
.block-products-chart .products-header__phase-iib-iii {
  grid-column: 7;
}
.block-products-chart .products-header__nda {
  grid-column: 8;
}
.block-products-chart .products-header__partners {
  grid-column: 9;
  border-left: 0;
}
.block-products-chart .products-header__partners::before {
  content: "";
  width: 100%;
  grid-column: 9;
  position: absolute;
  pointer-events: none;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.6rem;
  border: 1px solid var(--wp--preset--color--white);
  height: 100%;
}
.block-products-chart .product {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
}
.block-products-chart .product-title {
  grid-column: 1;
  border-bottom: var(--border-style);
  padding: var(--cell-padding);
}
.block-products-chart .product-title h3 {
  font-size: var(--wp--preset--font-size--normal);
  font-family: var(--wp--preset--font-family--secondary);
  text-transform: uppercase;
  font-weight: 300;
  margin: 0;
}
.block-products-chart .product-title h3 span {
  display: block;
  margin-top: 0.2em;
  color: rgba(255, 255, 255, 0.6);
}
.block-products-chart .product-target {
  border-left: var(--border-style);
  border-bottom: var(--border-style);
  padding: var(--cell-padding);
  line-height: 1;
  font-size: var(--wp--preset--font-size--small);
  text-align: center;
}
.block-products-chart .product-indications {
  display: grid;
  line-height: 1;
  grid-template-columns: subgrid;
  grid-column: 3/-1;
}
.block-products-chart .product-indications .indication {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  border-bottom: var(--border-style);
}
.block-products-chart .product-indications .indication-title {
  border-left: var(--border-style);
  padding: var(--cell-padding);
  text-align: center;
}
.block-products-chart .product-indications .indication-title h4 {
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--small);
  margin: 0;
  text-transform: uppercase;
}
.block-products-chart .product-indications .indication-title h4 span {
  display: block;
  margin-top: 0.5em;
  color: rgba(255, 255, 255, 0.6);
}
.block-products-chart .product-indications .indication-progress {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 2/span 5;
}
.block-products-chart .product-indications .indication-progress .progress {
  border-left: var(--border-style);
  padding: var(--cell-padding);
  grid-row: 1;
}
.block-products-chart .product-indications .indication-progress .progress span {
  display: none;
}
.block-products-chart .product-indications .indication-progress .progress.pre-clinical {
  grid-column: 1;
}
.block-products-chart .product-indications .indication-progress .progress.phase-i {
  grid-column: 2;
}
.block-products-chart .product-indications .indication-progress .progress.phase-iia {
  grid-column: 3;
}
.block-products-chart .product-indications .indication-progress .progress.phase-iib-iii {
  grid-column: 4;
}
.block-products-chart .product-indications .indication-progress .progress.nda {
  grid-column: 5;
}
.block-products-chart .product-indications .indication-progress .progress-bar {
  grid-column: 1/span 5;
  grid-row: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5em;
}
.block-products-chart .product-indications .indication-progress .progress-bar .mobile-label {
  display: none;
}
.block-products-chart .product-indications .indication-progress .progress-bar .mobile-label span {
  color: rgba(255, 255, 255, 0.6);
}
.block-products-chart .product-indications .indication-progress .progress-bar .progress-indicator {
  position: relative;
  width: 0%;
  height: 8px;
  border-radius: 999px;
  background: var(--product-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-products-chart .product-indications .indication-progress .progress-bar .progress-indicator.active {
  transform: scaleX(1);
}
.block-products-chart .product-indications .indication .product-partners {
  border-left: var(--border-style);
  padding: var(--cell-padding);
  grid-column: -1;
  grid-row: 1;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--wp--preset--spacing--x-small);
}
.block-products-chart .product-indications .indication .product-partners span {
  display: none;
}
.block-products-chart .product-indications .indication .product-partners .partner {
  display: block;
  max-width: 60px;
  max-height: 20px;
}
.block-products-chart .product-indications .indication .product-partners .partner::before {
  content: none;
}
@media screen and (min-width: 900px) {
  .block-products-chart .product:last-of-type .product-title,
  .block-products-chart .product:last-of-type .product-target,
  .block-products-chart .product:last-of-type .product-indications {
    border-bottom: 0;
  }
  .block-products-chart .product:last-of-type .product-title .indication,
  .block-products-chart .product:last-of-type .product-target .indication,
  .block-products-chart .product:last-of-type .product-indications .indication {
    border-bottom: 0;
  }
}
@media screen and (max-width: 900px) {
  .block-products-chart {
    grid-template-columns: repeat(5, 1fr);
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .block-products-chart .product {
    margin-bottom: var(--wp--preset--spacing--large);
  }
  .block-products-chart .product-header-title {
    display: none;
  }
  .block-products-chart .product-title {
    grid-column: 1/-1;
    border-top: 2px solid var(--wp--preset--color--white);
  }
  .block-products-chart .product-title h3 {
    font-size: var(--wp--preset--font-size--large);
  }
  .block-products-chart .product-title h3 span {
    display: inline-block;
  }
  .block-products-chart .product-target {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 0;
  }
  .block-products-chart .product-target::before {
    content: "Target";
    text-transform: uppercase;
  }
  .block-products-chart .product-indications {
    grid-column: 1/-1;
  }
  .block-products-chart .product-indications .indication-title {
    display: none;
  }
  .block-products-chart .product-indications .indication-progress {
    grid-column: 1/span 5;
  }
  .block-products-chart .product-indications .indication-progress .progress-bar {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--wp--preset--spacing--small);
    padding: 1em 0.5em;
  }
  .block-products-chart .product-indications .indication-progress .progress-bar .mobile-label {
    display: block;
  }
  .block-products-chart .product-indications .indication-progress .pre-clinical.progress {
    border-left: 0;
  }
  .block-products-chart .product-indications .indication .product-partners {
    border: 1px solid var(--wp--preset--color--white);
    background: rgba(255, 255, 255, 0.1);
    border-top: 0;
    border-bottom: 0;
  }
  .block-products-chart .product-indications .indication .product-partners img {
    max-width: 50px;
    max-height: 50px;
  }
  .block-products-chart .product .product-indications .indication:first-child {
    position: relative;
  }
  .block-products-chart .product .product-indications .indication:first-child .indication-progress {
    grid-template-rows: 1fr 1fr;
  }
  .block-products-chart .product .product-indications .indication:first-child .indication-progress .progress {
    grid-row: 1;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 0;
  }
  .block-products-chart .product .product-indications .indication:first-child .indication-progress .progress::after {
    content: "";
    position: absolute;
    border-right: var(--border-style);
    height: 200%;
    right: -1px;
    top: 0;
  }
  .block-products-chart .product .product-indications .indication:first-child .indication-progress .progress span {
    display: block;
    font-size: var(--wp--preset--font-size--small);
  }
  .block-products-chart .product .product-indications .indication:first-child .indication-progress .progress.nda::after {
    top: 100%;
    height: 0%;
  }
  .block-products-chart .product .product-indications .indication:first-child .indication-progress .progress-bar {
    grid-row: 2;
  }
  .block-products-chart .product .product-indications .indication:first-child .indication-progress .progress-bar::before {
    content: "";
    position: absolute;
    top: 8rem;
    left: 0;
    right: 0;
    height: 1px;
    border-bottom: var(--border-style);
  }
  .block-products-chart .product .product-indications .indication:first-child .indication-progress .progress-bar .progress-indicator::before {
    content: var(--product-label);
  }
  .block-products-chart .product .product-indications .indication:first-child .product-partners {
    display: block;
    text-transform: uppercase;
    border: 1px solid var(--wp--preset--color--white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
    border-bottom: 0;
    padding: 0;
  }
  .block-products-chart .product .product-indications .indication:first-child .product-partners span {
    padding: 1em;
    display: flex;
    align-items: center;
    font-size: var(--wp--preset--font-size--small);
    height: 50%;
  }
  .block-products-chart .product .product-indications .indication:last-child .product-partners {
    border-radius: 0 0 8px 8px;
    border-top: 0;
    border-bottom: 1px solid var(--wp--preset--color--white);
    background: rgba(255, 255, 255, 0.1);
  }
  .block-products-chart .product:last-child .product-indications .indication:last-child .product-partners {
    border: 1px solid var(--wp--preset--color--white);
    border-radius: 8px;
  }
}/*# sourceMappingURL=block-products-chart.css.map */