/*
 Theme Name: People Count Theme
 Version: 1.0
 Author: Nazere Wright
 Description: Applicant Tracking System.
 */
 #ppc-sidebar{
  background: #1d1919;
  height: 100vh;
}
#main{
  display: flex;
  flex:1;
 }
 .slide{
 	width: 250px;
 }
 #ppc-sidebar {
  order: -1;
  width: 250px;
  background-color: #323237;
  transition: 0.5s;
}
@media (max-width: 991px){
  #ppc-sidebar {
    width: 0px;
    z-index: auto;
    transition: 0.5s;
  }
  .menu-site-menu-container{
  	display: none;
  }

}
 
 @media screen and (min-width: 576px) {
  #main {
    flex-direction: row;
  }
  #main > aside {
    flex: 0 0 20vw;
  }  
}