/* 
    Created on : 11 oct. 2022, 12:01:46
    Author     : hugo.lizama
*/

#wrapper{
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper #sidebar{
  display: inline-flex;
  height: 100vh;
  position: fixed;
  overflow-x: auto;
}

#wrapper #sidebar,
#wrapper.toggled1 #sidebar:hover {
  width: 250px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1031;
}

#toggle1, 
#toggle1 span,
#toggle1_sm,
#toggle1_sm span{
  line-height: 0;
}

#wrapper #sidebar ul.nav > li{
  overflow: hidden;
}

#wrapper #sidebar ul.nav > li > a{
  padding: 15px 15px 0px 15px;
  display: flex;
  align-items: center;
}

#wrapper #sidebar ul.nav > li > a:after{
  margin-left: auto;
}

#wrapper #sidebar ul.btn-toggle-nav > li > a{
  font-size: 0.8rem;
  width: 200px;
}

#wrapper #sidebar ul li .fa-fw{
  padding-right: 2.5em;
}


#sidebar ul.btn-toggle-nav{
  padding-left: 3.2em;
}


#wrapper #outer-content{
  display: inline-flex;
  padding-left: 250px;
  margin: 0px;
  width: 100%;
  
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper #sidebar hr{
  margin-top: 5px;
  margin-bottom: 5px;
}


#wrapper #sidebar > ul.nav > li.menu-header {
  margin-bottom: 4px;
}

#wrapper #sidebar > ul.nav > li.menu-header > a.nav-link,
#wrapper #sidebar #toggle2 {
  padding-top: 0px;
  padding-bottom: 10px;
}


#wrapper.toggled1 #sidebar{
  width: 50px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}


#wrapper.toggled1 #outer-content{
  display: inline-flex;
  padding-left: 50px;
  margin: 0px;
  width: 100%;
  
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}



@media (max-width: 991px) {
  
  #wrapper #sidebar{
    width: 0px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;    
    margin-left: -30px;
  }
  
  
  #wrapper #outer-content{
    display: inline-flex;
    padding-left: 0px;
    margin: 0px;
    width: 100%;

    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
    
  
  #wrapper.toggled2 #sidebar{
    width: 250px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-left: 0px;
  }
  
}