#sidebar a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
#sidebar {
  background-image: url(../img/background/sidebar-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 250px;
  position: fixed;
  top: 0;
  left: -250px;
  min-height: fit-content;
  z-index: 999;
  color: #fff;
  transition: all 0.3s;
  overflow-y: scroll;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
#sidebar.active {
  left: 0;
}
#sidebar .line {
  border-bottom: 1.5px solid #ffffff80;
  width: 88%;
  margin-left: 15px;
}
#sidebar .brand-logo {
  height: 40px;
}
#sidebar .button-close {
  height: 15px;
}
#dismiss {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#dismiss:hover {
  background: #fff;
}
.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.overlay.active {
  display: block;
  opacity: 1;
}
#sidebar .sidebar-header {
  padding: 20px;
}
#sidebar ul.components {
  font-family: "NotoSerifDisplay-LightItalic";
  padding: 20px 0;
  padding-left: 10px;
  border-bottom: 1px solid #47748b;
}
#sidebar ul p {
  color: #fff;
  padding: 10px;
}
#sidebar ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
}
#sidebar ul li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.5);
}
#sidebar ul li.active > a,
a[aria-expanded="true"] {
  color: #fff;
}
#sidebar a[data-toggle="collapse"] {
  position: relative;
}
#sidebar .dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
#sidebar ul ul a {
  font-size: 0.9em !important;
  padding-left: 30px !important;
}
#content {
  width: 100%;
  min-height: 100vh;
  transition: all 0.3s;
  top: 0;
  right: 0;
}
