/* Sticky mobile header for MkDocs ReadTheDocs theme */

@media screen and (max-width: 768px) {

  .wy-nav-top {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
  }

  /* push page content down so it isn't hidden */
  .wy-nav-content-wrap {
      margin-top: 50px;
  }

}

/* Smooth sliding mobile menu */

@media screen and (max-width: 768px) {

  .wy-nav-side {
      transition: transform 0.25s ease-in-out;
  }

  .wy-nav-side.shift {
      transform: translateX(0);
  }

}

@media screen and (max-width: 768px) {

  .wy-nav-side {
      width: 85%;
      max-width: 300px;
  }

}
