@charset "UTF-8";

/* Due to the SCSS conversion process of the main style files, we use this separate file for auxiliary fixes to avoid synchronization and conflict issues. */

/* refs #41632, fix: mobile navigation scrollbar issue */
html:has(#CollapsingNavbar.show),
body:has(#CollapsingNavbar.show) {
  overflow: hidden;
}
.navbar-collapse {
  overflow-y: auto;
  max-height: 100vh;
  padding-bottom: 200px;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .navbar-collapse {
    max-height: 90vh;
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-collapse {
    overflow-y: visible;
  }
}
