/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 22 2026 | 11:28:27 */
/* ============================================================
   FALKNER MOBILE MENU - Ergaenzung zu Snippet 16808 (v16)
   16808 bleibt unveraendert; dieses Snippet laedt danach.
   1) moderate Kompaktierung (Schriftgroesse bleibt 15px)
   2) Login dauerhaft am unteren Panelrand erreichbar
   3) WhatsApp-FAB bei offenem Menue ausblenden
   Scope: nur <=1100px (Breakpoint aus 16808), nur bei .active
   ============================================================ */
@media screen and (max-width: 1100px){

  /* 1) Kompaktierung - Zeilenhoehe statt Schriftgroesse */
  .pxl-header-menu.active .pxl-menu-primary > li > a{
    line-height: 40px !important;
  }
  .pxl-header-menu.active .pxl-menu-primary .sub-menu > li > a{
    line-height: 34px !important;
  }

  /* 2) Login dauerhaft erreichbar. Hintergrund ueber ::before, weil 16808
        die li-Margins mit hoeherer Spezifitaet setzt - kein !important-Kampf. */
  .pxl-header-menu.active .pxl-menu-primary > li.mobile-only-login{
    position: sticky;
    bottom: 0;
    z-index: 5;
  }
  .pxl-header-menu.active .pxl-menu-primary > li.mobile-only-login::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: -1px;
    left: -40px;
    right: -40px;
    background: rgb(31,42,55);
    border-top: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 -16px 24px -8px rgba(0,0,0,0.85);
    z-index: -1;
    pointer-events: none;
  }

  /* 3) WhatsApp-FAB bei offenem Menue ausblenden
        (gleiche Systematik wie Snippet 17554 fuer den Cookie-Banner) */
  html body:has(.pxl-header-menu.active) a.fk-whatsapp-fab{
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}