body {
  font-size: .75rem;
}

.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

/*
 * Sidebar Main Page
 */

 #sidebar {
   background: #8c1515;
   width: 240px;
   top: 0;
   bottom: 0;
   z-index: 100; /* Behind the navbar */
   padding: 48px 0 0; /* Height of navbar */
   position: relative;
 }

 #sidebar.active {
   margin-left: -240px;
 }

 #sidebar ul.components {
   padding: 0;
 }

 #sidebar ul li {
   font-size: 16px;
 }

 #sidebar ul li a {
   padding: 10px 20px;
   display: block;
   color: rgba(255, 255, 255, 0.6);
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 #sidebar ul li a:hover {
   color: #fff;
 }

 #sidebar ul li.active > a {
   background: transparent;
   color: #fff;
 }

 #sidebar .custom-menu {
   display: inline-block;
   position: absolute;
   top: 50px;
   right: 0;
   margin-right: -20px;
   -webkit-transition: 0.3s;
   -o-transition: 0.3s;
   transition: 0.3s;
 }

 #sidebar .custom-menu .btn {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   position: relative;
 }

 #sidebar .custom-menu .btn i {
   margin-right: -40px;
   font-size: 14px;
 }

 #sidebar .custom-menu .btn.btn-primary {
   background: transparent;
   border-color: transparent;
 }

 #sidebar .custom-menu .btn.btn-primary:after {
   z-index: -1;
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   content: '';
   -webkit-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   transform: rotate(45deg);
   background: #8c1515;
   border-radius: 10px;
 }

 #sidebar .btn:focus, .btn:active {
   outline: none !important;
   box-shadow: none !important;
 }

 .sidebar-sticky {
   position: relative;
   top: 0;
   height: calc(100vh - 48px);
   padding-top: .5rem;
   overflow-x: hidden;
   overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
 }

 @supports ((position: -webkit-sticky) or (position: sticky)) {
   .sidebar-sticky {
     position: -webkit-sticky;
     position: sticky;
   }
 }

/*
 * Content
 */

[role="main"] {
  padding-top: 48px; /* Space for fixed navbar */
}

#content {
  width: 100%;
  padding-top: 48px;
  min-height: 100vh;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*
 * Navbar
 */
.navbar {
  background-color: #8c1515;
}

.navbar-brand {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, .25);
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
}

.navbar .form-control {
  padding: .75rem 1rem;
  border-width: 0;
  border-radius: 0;
}

.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}
