/* Navigation overrides for high contrast theme */
.sidebar-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sidebar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  min-width: 200px;
  max-width: 300px;
  width: 80%;
  background: rgba( 234, 234, 234 ,  1 );
  background: rgba( var(--palette-neutral-8,234, 234, 234) ,  1 );
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.sidebar-header {
  display: flex;
  flex-direction: row;
  flex-grow: 0;
  background: rgba( 255, 255, 255 ,  1 );
  background: rgba( var(--palette-neutral-0,255, 255, 255) ,  1 );
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55));
}

.sidebar-header .bowtie-icon {
  font-size: 18px;
}

.sidebar-header .sidebar-home {
  flex-grow: 0;
}

.sidebar-header .sidebar-home, .sidebar-header .sidebar-home:visited, .sidebar-header .sidebar-home:active, .sidebar-header .sidebar-home:focus, .sidebar-header .sidebar-home:hover {
  display: block;
  width: 50px;
  height: 50px;
  color: rgba(0, 90, 158, 1);
  color: var(--communication-foreground,rgba(0, 90, 158, 1));
  background: rgba( 255, 255, 255 ,  1 );
  background: rgba( var(--palette-neutral-0,255, 255, 255) ,  1 );
  text-align: center;
  text-decoration: none;
}

.sidebar-header .sidebar-title {
  flex: 1 1 0;
}

.sidebar-header .sidebar-title, .sidebar-header .sidebar-title:visited, .sidebar-header .sidebar-title:active, .sidebar-header .sidebar-title:focus, .sidebar-header .sidebar-title:hover {
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55));
  text-decoration: none;
}

.sidebar-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}
