/* Keep the fixed homepage navigation below the WordPress admin toolbar. */
body.admin-bar .site-header {
  top: 32px;
}

body.admin-bar .mobile-nav-backdrop {
  top: 98px;
}

body.admin-bar .mobile-nav-panel {
  top: 98px;
  max-height: calc(100vh - 98px);
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .mobile-nav-backdrop {
    top: 112px;
  }

  body.admin-bar .mobile-nav-panel {
    top: 112px;
    max-height: calc(100vh - 112px);
  }
}

@media (max-width: 720px) {
  body.admin-bar .mobile-nav-backdrop {
    top: 108px;
  }

  body.admin-bar .mobile-nav-panel {
    top: 108px;
    max-height: calc(100vh - 108px);
  }
}
