/*
 * DO NOT EDIT THIS FILE.
 * Edit .pcss.css file instead and recompile.
*/

/**
 * @file
 */

/*
  Custom CSS properties and mixins.
  These are "compiled" by postcss/postcss-custom-properties for IE11 compatibility.
  CSS variables (those that start with --) are included in the generated CSS. Sass style variables (those that start with $) are for internal processing.
*/

/* Internal variables */

/*1px */

/*16px */

/*4px */

/*5.33333333px */

/*8px */

/*12px */

/*20px */

/*24px, */

/*32px */

/*44px (named after omicron variant BS.2.75.2) */

/*48px */

/*desktop + 32px; */

/*max-width + 64px; */

/* RGB colors, useful for when you need to include a color in an RGBA set. */

/* Mixins */

/* */

/* Hide elements visually, but keep them available for screen-readers. */

/* */

/* Used for information required for screen-reader users to understand and use */

/* the site where visual display is undesirable. Information provided in this */

/* manner should be kept concise, to avoid unnecessary burden on the user. */

/* "!important" is used to prevent unintentional overrides. */

/* */

/* Animate menu icon (lines). */

.menu-toggle {
  width: 1.75rem;
  height: 1.5rem;
  top: 0;
  font-size: 0.875rem;
  position: relative;
}

.menu-toggle__line1 {
  display: block;
  height: 4px;
  width: 28px;
  background-color: var(--c-nav-fg);
  transition: calc(var(--base-duration)*2) var(--base-timing) all;
  position: absolute;
  border-radius: 4px;
  }

.mobile-nav-button[aria-expanded="true"] .menu-toggle__line1 {
      transform: rotate(45deg);
      top:10px;
      width: 26px;
      left: 2px;
    }

@media (min-width: 569px) {

.mobile-nav-button[aria-expanded="true"] .menu-toggle__line1 {
        background-color: var(--c-nav-fg)
    }
      }

.menu-toggle__line2 {
  display: block;
  height: 4px;
  width: 28px;
  background-color: var(--c-nav-fg);
  transition: calc(var(--base-duration)*2) var(--base-timing) all;
  position: absolute;
  border-radius: 4px;
  }

.menu-toggle__line2 {
    top: 9px;
  }

.mobile-nav-button[aria-expanded="true"] .menu-toggle__line2 {
      background-color: transparent;
      width: 0;
    }

.menu-toggle__line3 {
  display: block;
  height: 4px;
  width: 28px;
  background-color: var(--c-nav-fg);
  transition: calc(var(--base-duration)*2) var(--base-timing) all;
  position: absolute;
  border-radius: 4px;
  }

.menu-toggle__line3 {
    top: 18px;
  }

.mobile-nav-button[aria-expanded="true"] .menu-toggle__line3 {
      transform: rotate(-45deg);
      top: 10px;
      width: 26px;
      left: 2px;
    }

@media (min-width: 569px) {

.mobile-nav-button[aria-expanded="true"] .menu-toggle__line3 {
        background-color:  var(--c-nav-fg)
    }
      }

.menu-toggle__wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* @media (width > $narrow){
      justify-content: flex-end;
    } */
  }

.menu-toggle__label {
    margin-left: 0.75rem;
    /* height: 23px; */
    color: var(--c-nav-fg);
  }

.menu-toggle__label {
  font-weight: 500;
}

.mobile-nav-close-button {
  cursor: pointer;
  background-color: rgba(0,0,0,0.3);
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding-left: calc(var(--space) - 4px);
}

@media (min-width: 569px) {

.mobile-nav-close-button {
    padding-left: calc(var(--double-space) - 4px)
}
  }

.mobile-nav-close-button:hover {
    background-color: rgba(0,0,0,0.5);
  }

.mobile-nav-close-button .menu-toggle__line1 {
      transform: rotate(45deg);
      top:10px;
      width: 26px;
      left: 2px;
    }

.mobile-nav-close-button .menu-toggle__line2 {
      background-color: transparent;
      width: 0;
    }

.mobile-nav-close-button .menu-toggle__line3 {
      transform: rotate(-45deg);
      top: 10px;
      width: 26px;
      left: 2px;
    }

.mobile-buttons {
  margin-top: 0;
}

body:not(.path-frontpage) .mobile-buttons {
    background-color: rgba(0,0,0,0.2);
  }

@media (min-width: 476px) {

.mobile-buttons {
    margin-top: 0
}
  }

.mobile-nav-button {
  cursor: pointer;
  padding: inherit;
  background-color: inherit;
  border: inherit;
  border-radius: inherit;
  width: 100%;
  margin: 0;
  padding-left: var(--space);
}

@media (min-width: 569px){

.mobile-nav-button {
    padding-left: var(--double-space);
    padding-right: var(--double-space)
}
  }

.mobile-nav-button:hover {
    background-color: rgba(0,0,0,0.5);
  }

.mobile-nav-button[aria-expanded="true"] {
  /* position: fixed; */
  top: 0;
  width: 100%;
  z-index: 600;
  background-color: rgba(0,0,0,0.2);

}

.toolbar-icon-9 .mobile-nav-button[aria-expanded="true"] {
    top: 3rem;
  }

