/* PromptSaar simple mobile menu v4 — no scroll lock */

@media(max-width:767px){
  body,
  html{
    overflow-x:hidden !important;
  }

  body.ps-v4-menu-open #menuPanel{
    z-index:99999 !important;
  }

  body.ps-v4-menu-floating #menuPanel{
    position:fixed !important;
    top:calc(var(--ps-v4-header-bottom,64px) + 6px) !important;
    right:12px !important;
    left:12px !important;
    bottom:auto !important;
    width:auto !important;
    max-width:none !important;
    max-height:calc(
      100dvh - var(--ps-v4-header-bottom,64px) - 18px
    ) !important;
    margin:0 !important;
    overflow-x:hidden !important;
    overflow-y:auto !important;
    overscroll-behavior:contain !important;
    -webkit-overflow-scrolling:touch !important;
    box-shadow:0 22px 60px rgba(15,18,28,.22) !important;
  }

  body.ps-v4-menu-inline #menuPanel{
    position:relative !important;
    top:auto !important;
    right:auto !important;
    left:auto !important;
    width:calc(100% - 24px) !important;
    max-width:none !important;
    margin:10px auto 12px !important;
  }

  #menuPanel[hidden]{
    display:none !important;
  }
}