.wrapper {
  display: flex;
  width: 100%;
  align-items: stretch;
}
#sidebar {
  min-width: 250px;
  max-width: 250px;
  background: #2A3F54;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  #sidebar {
    /* On small devices limit to condensed bar, and hide by default */
    /*min-width: @cond-sidebar-width;
        max-width: @cond-sidebar-width;
        text-align: center;*/
    min-width: 100px;
    max-width: 100px;
    text-align: center;
    margin-left: -100px !important;
  }
  #sidebar .sidebar-header h3,
  #sidebar .CTAs {
    display: none;
  }
  #sidebar .sidebar-header strong {
    display: block;
  }
  #sidebar ul li a {
    padding: 20px 10px;
    text-align: center;
    font-size: 0.85em;
  }
  #sidebar ul ul a {
    /* Apply same padding to sublists*/
    padding: 10px !important;
  }
  #sidebar .dropdown-toggle::after {
    top: auto;
    bottom: 10px;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }
  #sidebar.active {
    margin-left: 1px !important;
  }
}
#sidebar a[data-bs-toggle="collapse"] {
  position: relative;
}
#sidebar .dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
#sidebar .sidebar-header {
  padding: 20px;
  /*background: @sidebar-bg-colour; */
}
#sidebar .sidebar-header strong {
  display: none;
}
#sidebar ul.components {
  padding: 20px 0;
}
#sidebar ul li a {
  text-align: left;
}
#sidebar.active {
  min-width: 100px;
  max-width: 100px;
  text-align: center;
}
#sidebar.active .sidebar-header h3,
#sidebar.active .CTAs {
  display: none;
}
#sidebar.active .sidebar-header strong {
  display: block;
}
#sidebar.active ul li a {
  padding: 20px 10px;
  text-align: center;
  font-size: 0.85em;
}
#sidebar.active ul ul a {
  /* Apply same padding to sublists*/
  padding: 10px !important;
}
#sidebar.active .dropdown-toggle::after {
  top: auto;
  bottom: 10px;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}
#sidebar ul p {
  color: #fff;
  padding: 10px;
}
#sidebar ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
}
#sidebar ul li a.active,
#sidebar ul li a:hover {
  color: #2A3F54;
  background: #fff;
}
#sidebar ul li.active > a,
#sidebar a[aria-expanded="true"] {
  color: #fff;
  background: #2A3F54;
  border-right: 5px solid green;
}
#sidebar ul ul a {
  font-size: 0.9em;
  /* !important; 8*/
  padding-left: 30px;
  /* !important; */
  background: #2A3F54;
  border-right: 5px solid green;
}
/*
    ADDITIONAL DEMO STYLE, NOT IMPORTANT TO MAKE THINGS WORK BUT TO MAKE IT A BIT NICER :)
*/
body {
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  color: #13171d;
  /*font-family: "Helvetica Neue", Roboto, Arial, "Droid Sans", sans-serif;*/
  font-size: 14px;
  font-weight: 400;
  line-height: 1.471;
}
p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.7em;
  color: #999;
}
a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
#content {
  width: 100%;
  padding: 20px;
  transition: all 0.3s;
}
#main {
  width: 100%;
  min-height: 100vh;
}
/*# sourceMappingURL=style.css.map */