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

/**
 * @file
 * Header Toggles for Nav and Search
 */

/*
  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. */

/* */

.primary-menu {
  margin: 0;
}

.primary-menu .primary-menu__toggles {
    padding: 0;
  }

/*border-top: 1px dotted var(--c-graphite); */

/*border-bottom: 1px dotted var(--c-graphite); */

.primary-menu .primary-menu__toggles button {
      width: inherit;
      padding-left: 0;
      padding-right: 0;
    }

.primary-menu .primary-menu__toggles button:hover, .primary-menu .primary-menu__toggles button:active, .primary-menu .primary-menu__toggles button:focus, .primary-menu .primary-menu__toggles button {
        background-color: transparent;
        border-radius: 0;
        border: 0;
      }

.primary-menu .primary-menu__toggles button:focus {
      }

.primary-menu .primary-menu__toggles .menu-toggle__label, .primary-menu .primary-menu__toggles .search-toggle__label {
      font-size: var(--fs-h4);
      line-height: var(--lh-h4);
      height: inherit;
      font-weight: 500;
    }

@media (min-width: 901px) {

.primary-menu .primary-menu__toggles {
      display: none
  }
    }

@media (min-width: 569px) and (max-width: 899px) {

.primary-menu .search-block-form {
      -ms-grid-column: 1;
      -ms-grid-column-span: 1;
      grid-column: 1 / 2;
      -ms-grid-row: 1;
      -ms-grid-row-span: 1;
      grid-row: 1 / 2
  }
    }

/*#search-block-form--button { */

/*  background-color: transparent; */

/*  border-radius: 0; */

/*  border: 0; */

/*  @media (width > $desktop) { */

/*    display: none; */

/*  } */

/*} */

.search-toggle {
  position: relative;
  width: 1.75rem;
  height: 1.5rem;
}

.search-toggle__wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

.search-toggle__circle {
    height: 23px;
    width: 23px;
    display: inline-block;
    border: 4px solid var(--c-nav-fg);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: -2px;
    transition: var(--base-duration) var(--base-timing) all;
  }

.active .search-toggle__circle {
      border-radius: 0;
      height: 1px;
      border-width: 2px;
      width: 26px;
      transform: rotate(-45deg);
      background-color:var(--c-nav-fg);
      top: 10px;
      left: 2px;
      border-radius: 4px;
    }

.search-toggle__line {
    display: inline-block;
    width: 14px;
    height: 4px;
    background-color: var(--c-nav-fg);
    transform: rotate(45deg);
    position: absolute;
    bottom: 3px;
    left: 16px;
    transition: calc(var(--base-duration)*2)  var(--base-timing) all;
    border-radius: 4px;
  }

.active .search-toggle__line {
      width: 26px;
      top: 10px;
      left: 2px;
    }

.search-toggle__label {
    margin-left: calc(var(--space)*0.75);
    color: var(--c-nav-fg);
  }

@media (min-width: 569px) {
    .search-toggle__label {
      color: var(--c-nav-fg);
    }

    .search-toggle__circle {
      border-color: var(--c-nav-fg);
    }

    .search-toggle__line {
      background-color: var(--c-nav-fg);
    }
  }
