
/* v3.7.274 (Bug 1): Hide the .wtpp-header-icons strip whenever the
   mobile nav menu is expanded. Without this, on screens 541-720px
   the strip stays at position:absolute top:10px left:100px and
   visually overlaps the Home option in the expanded menu (the
   menu drops DOWN from the top, so the first menu item sits at
   exactly the same vertical position as the absolutely-positioned
   strip). The :has() selector reliably detects the .nav-open
   state on the nav element. */
@media (max-width: 720px) {
  body:has(.page-nav.nav-open) .wtpp-header-icons {
    display: none !important;
  }
}
