
/* Los colores los toma del head */


.menu-toggle {
  z-index: 2000 !important;
  XXXbackground-color: var(--color01);
  XXXbackground-color: chartreuse;
  
}


.menu-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff;
  
  
  line-height: 50px;
  
}



.menu-toggle:focus, .menu-toggle:hover {
  color: #fff;
}

.menu-toggle:hover {
  background: #343a40;
} 



#sidebar-wrapper { z-index: 1999 !important;}

#sidebar-wrapper {
  position: fixed;
  XXXz-index: 2;
  right: 0;
  width: 250px;
  height: 100%;
  transition: all 0.4s ease 0s;
  transform: translateX(250px);
  background-color: var(--color01);
  border-left: 1px solid rgba(var(--color01_rgb), 0.1);
}

.sidebar-nav {
  position: absolute;
  top: 0;
  width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav li.sidebar-nav-item a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 15px;
}

.sidebar-nav li a:hover {
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}
/**/
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
  text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
  font-size: 1.2rem;
  background: rgba(52, 58, 64, 0.1);
  height: 80px;
  line-height: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}

.sidebar-nav > .sidebar-brand a {
  color: #fff;
}

.sidebar-nav > .sidebar-brand a:hover {
  color: #fff;
  background: none;
}

#sidebar-wrapper.active {
  right: 250px;
  width: 250px;
  transition: all 0.4s ease 0s;
}

