/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Nav Button Mobile.
 */

[dir="ltr"] .mobile-nav-button {
  margin-left: auto
}

[dir="rtl"] .mobile-nav-button {
  margin-right: auto
}

.mobile-nav-button {
  position: relative;
  z-index: 505; /* Appear above mobile nav. */
  display: flex;
  align-items: center;
  -ms-grid-row-align: center;
  align-self: center;
  height: 2.25rem;
  padding-top: 0;
  padding-bottom: 0;
  cursor: pointer;
  border: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none
}

.mobile-nav-button:hover{
  color: #FFF;
}
.path-frontpage .mobile-nav-button:hover{
  color: #000;
}
.path-frontpage.is-overlay-active .mobile-nav-button:hover{
  color: #FFF;
}

.is-overlay-active .mobile-nav-button {
  color: #FFF;
}

@media (min-width: 31.25rem) {

.mobile-nav-button {
    display: inline-flex;
    width: auto
}
  }

/* Text that says "menu". */

.mobile-nav-button__label {
  position: absolute;
  display: none;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal
}

@media (min-width: 31.25rem) {

  .mobile-nav-button__label {
      position: static;
      overflow: visible;
      clip: auto;
      width: auto;
      height: auto;
      letter-spacing: 0.05em;
      font-size: 0.875rem;
      font-weight: 600;
      margin: 0 0.875rem;
  }
}

.mobile-nav-button__icon {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 0;
  border-top: solid 3px #333;
  border-radius: 1px;
}
.mobile-nav-button:hover .mobile-nav-button__icon,
.is-overlay-active .mobile-nav-button .mobile-nav-button__icon {
  border-top: solid 3px #FFF;
}
.path-frontpage .mobile-nav-button:hover .mobile-nav-button__icon {
  border-top: solid 3px #000;
}
.path-frontpage.is-overlay-active .mobile-nav-button .mobile-nav-button__icon {
  border-top: solid 0 #FFF;
}

[dir="ltr"] .mobile-nav-button__icon:before {
    left: 0
}

[dir="rtl"] .mobile-nav-button__icon:before {
    right: 0
}

.mobile-nav-button__icon:before {
    position: absolute;
    top: -0.6875rem;
    width: 100%;
    height: 0;
    content: "";
    transition: all 0.2s;
    border-top: solid 3px #333;
}
.mobile-nav-button:hover .mobile-nav-button__icon:before,
.is-overlay-active .mobile-nav-button .mobile-nav-button__icon:before {
  border-top: solid 3px #FFF;
}
.path-frontpage .mobile-nav-button:hover .mobile-nav-button__icon:before {
  border-top: solid 3px #000;
}
.path-frontpage.is-overlay-active .mobile-nav-button:hover .mobile-nav-button__icon:before {
  border-top: solid 3px #FFF;
}

[dir="ltr"] .mobile-nav-button__icon:after {
    left: 0
}

[dir="rtl"] .mobile-nav-button__icon:after {
    right: 0
}

.mobile-nav-button__icon:after {
    position: absolute;
    top: auto;
    bottom: -0.5rem;
    width: 100%;
    height: 0;
    content: "";
    transition: all 0.2s;
    border-top: solid 3px #333;
}
.mobile-nav-button:hover .mobile-nav-button__icon:after,
.path-frontpage.is-overlay-active .mobile-nav-button:hover .mobile-nav-button__icon:after,
.is-overlay-active .mobile-nav-button .mobile-nav-button__icon:after {
  border-top: solid 3px #FFF;
}
.path-frontpage .mobile-nav-button:hover .mobile-nav-button__icon:after {
  border-top: solid 3px #000;
}
.path-frontpage.is-overlay-active .mobile-nav-button:hover .mobile-nav-button__icon:after {
  border-top: solid 3px #FFF;
}

.mobile-nav-button[aria-expanded="true"] .mobile-nav-button__icon {
  border-top: 0
}

.mobile-nav-button[aria-expanded="true"] .mobile-nav-button__icon:before {
    top: 0;
    transform: rotate(-45deg);
}

.mobile-nav-button[aria-expanded="true"] .mobile-nav-button__icon:after {
    top: 0;
    transform: rotate(45deg);
}
