.sidebar {
  display: flex;
  flex-direction: column;
  width: 15em;
  text-align: left;
  position: fixed;
  margin-top: 5.75em;
  margin-left: 0.75em;
  border-radius: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #2b2b2b;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
  overflow-y: auto;
  height: calc(100vh - 6.25em);
  transition: all 333ms cubic-bezier(0, 0, 0, 1);
  justify-content: flex-start;
}

.left-sidebar {
  left: 0;
}

.right-sidebar {
  right: 0;
  flex-wrap: nowrap;
  padding-left: 0.7em;
  margin-right: 0.75em;
  width: 15.7em;
}

.sidebar-padder {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sidebar-bottom {
  margin-top: auto;
}

.sidebar .active {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar .active::before {
  content: "";
  position: absolute;
  left: 0;
  transform: translateY(2px);
  width: 3px;
  height: 16px;
  background-color: #ff0000;
  border-radius: 8px;
}

.sidebar p {
  margin: 10px 0;
}

.left-sidebar a,
.sublink {
  display: flex;
  color: rgb(255, 255, 255);
  border: 1px solid transparent;
  background-color: transparent;
  border-radius: 4px;
  height: 32px;
  width: auto;
  text-align: left;
  text-decoration: none;
  padding: 5px 12px;
  font-size: 1.05em;
  margin: 1.5px 0;
  transition: all 187ms Cubic-Bezier(0, 0, 0, 1);
  text-wrap: nowrap;
  text-overflow: clip;
}

.sublink {
  padding-left: 1.5em !important;
  display: none !important;
}

.right-sidebar div {
  padding-bottom: 0.75em;
}

.right-sidebar a:not(b a) {
  display: flex;
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
  transition: all 187ms Cubic-Bezier(0, 0, 0, 1);
  padding: 0.2em 0em 0.2em 1em;
}

.right-sidebar b a {
  display: flex;
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
  transition: all 187ms Cubic-Bezier(0, 0, 0, 1);
  text-wrap: nowrap;
}

.left-sidebar hr {
  margin: 0px 10px !important;
}

.left-sidebar a:hover {
  background: rgba(255, 255, 255, 0.0605);
  border: 1px solid rgba(255, 255, 255, 0.0605);
}

.right-sidebar a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

.left-sidebar a:active {
  background: rgba(255, 255, 255, 0.0419);
  border: 1px solid rgba(255, 255, 255, 0.0419);
  color: rgba(255, 255, 255, 0.786);
}

.right-sidebar a:active {
  color: rgba(255, 255, 255, 0.5) !important;
}

@media only screen and (max-width: 900px) {
  .left-sidebar {
    height: 100% !important;
    width: 0;
    margin-left: 0;
    margin-top: 0;
    padding-top: 5em;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
  }
  .left-sidebar a,
  .sublink {
    height: 36px !important;
    padding: 7px 12px !important;
  }
}
@media only screen and (max-width: 1230px) {
  .right-sidebar {
    height: 100%;
    right: -200em;
  }
}/*# sourceMappingURL=sidebar.css.map */