.nav.bs-sidenav li {
    display: none;
}
.nav.bs-sidenav li.main {
    display: block;
    font-size: 16px;
}
.toc-level-2 {
    /*margin-left: 6px;*/
}
.toc-level-3 {
    margin-left: 12px;
}
.no-bold {
    font-weight: normal !important;
}

/*pymdownx.tabbed*/
.tabbed-set {
  display: flex;
  position: relative;
  flex-wrap: wrap;
}

.tabbed-set .highlight {
  background: #ddd;
}

.tabbed-set .tabbed-content {
  display: none;
  order: 99;
  width: 100%;
}

.tabbed-set label {
  width: auto;
  margin: 0 0.5em;
  padding: 0.25em;
  font-size: 120%;
  cursor: pointer;
}

.tabbed-set input {
  position: absolute;
  opacity: 0;
}

.tabbed-set input:nth-child(n+1) {
  color: #333333;
}

.tabbed-set input:nth-child(n+1):checked + label {
    color: #FF5252;
}

.tabbed-set input:nth-child(n+1):checked + label + .tabbed-content {
    display: block;
}