/*Font Family SCSS Vars
$primaryFont: "ubuntu", sans-serif;
$secondaryFont: "canada-type-gibson";
$systemFonts: "system-ui", "Segoe UI", "Roboto", "Helvetica", "Arial", sans-serif,
  "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";\
*/
/*
* 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-ip__figure {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.block-ip__figure_stage {
  opacity: 0.4;
  transition: opacity 0.25s ease-in-out;
  cursor: pointer;
}
.block-ip__figure_stage svg {
  pointer-events: none;
}
.block-ip__figure_stage.active {
  opacity: 1;
}
.block-ip__arrow {
  width: 8rem;
  margin: 2rem auto;
}
.block-ip_stage {
  width: 100%;
  padding: 2rem;
  margin-bottom: 5px;
  color: white;
  text-align: center;
  background: var(--wp--preset--gradient--blue-violet);
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.25s ease-in-out;
}
.block-ip_stage p {
  margin-bottom: 0;
  pointer-events: none;
}
.block-ip_stage.active {
  opacity: 1;
  cursor: default;
}
