/*
 * Misc
 */

.no-display { display:none; }

label.error {
  display:none;
  color:#f00;
  font-size:80%;
}

#snoop-mode {
  position:fixed;
  width: 100%;
  top: 0;
  z-index: 2000;
  font-size: 75%;
  padding: 0px;
  border-radius:0;
  text-align:center;
}

/*
 * Sidebar
 */

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 73px 0 0; /* Height of navbar */
  /* box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1); */
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

/*
 * Content
 */

[role="main"] {
  padding-top: 0; /* Space for fixed navbar */
}

.small { line-height: 1.2 }
.text-uppercase { text-transform: uppercase }
