/* stylelint-disable order/order */
/* stylelint-enable order/order */
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
.block-in-page-nav {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  border-top: 1px solid #c7cad1;
  border-bottom: 1px solid #c7cad1;
  background-color: #fff;
}
@media (max-width: 47.98rem) {
  .block-in-page-nav .container {
    padding: 0;
  }
}
.block-in-page-nav__mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.375rem 1.25rem;
  text-align: left;
  border: none;
  background-color: transparent;
}
@media (min-width: 48rem) {
  .block-in-page-nav__mobile-toggle {
    display: none;
  }
}
.block-in-page-nav__mobile-toggle.open .icon-drop-down {
  transform: rotate(180deg);
}
.block-in-page-nav .block-in-page-nav__mobile-toggle.open + .block-in-page-nav__wrapper {
  display: block;
  opacity: 1;
  animation: slideaway 200ms forwards;
}
.block-in-page-nav.acf-block {
  padding: 0 !important;
}
@media (min-width: 48rem) {
  .block-in-page-nav__wrapper {
    overflow-y: visible;
  }
}
@media (max-width: 47.98rem) {
  .block-in-page-nav__wrapper {
    display: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 200ms, display 200ms, box-shadow 200ms;
  }
  @keyframes slideaway {
    from {
      display: none;
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
.block-in-page-nav__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 48rem) {
  .block-in-page-nav__content ul {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 47.98rem) {
  .block-in-page-nav__content ul {
    padding: 0.625rem 0rem;
  }
}
@media (min-width: 48rem) {
  .block-in-page-nav__content li:first-of-type a {
    padding-left: 0;
  }
}
.block-in-page-nav__content a {
  font-weight: var(--nav-2-font-weight);
  font-size: var(--nav-2-font-size);
  font-family: var(--nav-2-font-family);
  line-height: var(--nav-2-line-height);
  letter-spacing: var(--nav-2-letter-spacing);
  display: block;
  padding: 1.375rem 1rem;
  color: #0d0d0d;
}
@media (max-width: 47.98rem) {
  .block-in-page-nav__content a {
    padding: 0.625rem 1.25rem;
  }
}
.block-in-page-nav__content a.active {
  color: #707070;
}
.block-in-page-nav__content .block-in-page-nav__mobile-toggle-text {
  text-transform: capitalize;
}