pn-button-dropdown .pn-button-dropdown > pn-button > .pn-button {
  min-height: initial;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
@media screen and (max-width: 767px) {
  .sr-only-mobile {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
}

body[data-siteheader-sidemenuopen=true] {
  max-height: 100vh;
  overflow: hidden;
}
@media screen and (min-width: 60em) {
  body[data-siteheader-sidemenuopen=true] {
    max-height: initial;
    overflow: initial;
  }
}

pn-sidenav {
  display: block;
  height: auto;
  width: 100vw;
  padding: 0 1.6rem;
  background-color: #ffffff;
  z-index: 6;
  transform: translateX(-100vw);
  transition: transform 0.2s 0s;
  transition-property: transform, visibility;
  flex-flow: column;
  visibility: hidden;
  position: fixed;
  overflow: auto;
  top: 10.2rem;
  bottom: 0;
  left: 0;
}
pn-sidenav[open=true] {
  visibility: visible;
  transform: none;
}
@media screen and (min-width: 48em) {
  pn-sidenav {
    top: 15.3rem;
  }
}
@media screen and (min-width: 64em) {
  pn-sidenav {
    position: relative;
    transform: none;
    visibility: visible;
    top: 0;
    z-index: inherit;
    width: 100%;
    padding: 0;
    height: auto;
    bottom: auto;
    left: auto;
  }
}