.md-sidebar--primary[hidden] { display: block; }
@media screen and (min-width: 76.25em) {
  .md-header__button[for="__drawer"] { display: inline-flex; }
  .md-sidebar--primary {
    background-color: var(--md-default-bg-color);
    position: fixed;
    top: 0;
    height: 100%;
    width: 12.1rem;
    transform: translateX(0);
    transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s;
    z-index: 5;
  }
  [dir="ltr"] .md-sidebar--primary { left: -12.1rem; }
  [dir="rtl"] .md-sidebar--primary { right: -12.1rem; }
  [data-md-toggle="drawer"]:checked ~ .md-container .md-sidebar--primary {
    box-shadow: var(--md-shadow-z3);
    transform: translateX(12.1rem);
  }
  [dir="rtl"] [data-md-toggle="drawer"]:checked ~ .md-container .md-sidebar--primary {
    transform: translateX(-12.1rem);
  }
}
