/* Overlay menu and header tweaks */
.ui-overlay-menu {
  z-index: 100000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none !important;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
body.ui-ol-menu-open .ui-overlay-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto !important;
  transition: opacity 0.25s ease;
}

#ui-header {
  position: fixed !important;
  z-index: 9999;
}

.ui-logo::before,
.ui-logo::after {
  content: none !important;
}

#ui-header a {
  text-decoration: none;
}
