#wrapper {
  position: relative !important;
}

#shortcuts-content {
  display: none;
  transition: all 0.25s ease;
}

#subsection-detail-menu {
  visibility: hidden;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100vh;
  background-color: #fffde7;
  overflow-y: auto;
  z-index: 1031;
  opacity: 0%;
  transition: all 0.3s linear !important;
}

#subsection-menu-dynamic-content .ss-title {
  font-weight: bold;
  color: #5d4037;
  border-bottom: 1px solid #f9a825;
  margin-bottom: 0.25rem;
  padding-bottom: 0.25rem;
}

#subsection-menu-dynamic-content .ss-link-btn {
  display: block;
  width: 100%;
  padding: 0.5rem;
  text-align: left;
  text-decoration: none;
  background-color: #fff8e1;
  color: #3e2723;
  border: 1px solid #ffe082;
  border-radius: 0.375rem;
  margin-bottom: 0.25rem;
  transition: background-color 0.15s ease;
}

#subsection-menu-dynamic-content .ss-link-btn:hover {
  background-color: #ffecb3;
  border-color: #f9a825;
  color: #1a1a1a;
}

#subsection-detail-menu.ready {
  visibility: visible;
  opacity: 100%;
  transition: all 0.3s linear !important;
}

#shortcuts-content.as-sidebar {
  display: block;
  margin-left: 0;
  transition: all 0.25s ease;
  width: 250px !important;
  min-width: 250px !important;
  border-right: 1px solid #dee2e6;
  background-color: #fff;
}

#shortcuts-content.as-navbar {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 75% !important;
  background-color: #fff;
  z-index: 1030;
  min-height: 100vh;
  opacity: 97%;
}

#shortcuts-content.as-navbar.hidden {
  opacity: 0%;
  visibility: hidden;
}

#shortcuts-content.as-sidebar.hidden {
  margin-left: -250px !important;
}

#shortcuts-heading.as-sidebar {
  padding: 0.875rem 1.25rem;
  font-size: 1.2rem;
}

#shortcuts-heading.as-sidebar img {
  width: 100%;
}

@media print {

  #shortcuts-content,
  #subsection-detail-menu {
    display: none !important;
  }
}