#wrapper {
  padding-left: 0;
  /*@include single-transition(all,0.9s,ease);*/
}
#wrapper .toggled {
  padding-left: 250px;
}

#sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  left: 250px;
  width: 0;
  height: 100%;
  margin-left: -250px;
  overflow-y: auto;
  background: #2c3e50;
  /*@include single-transition(all,0.9s,ease);*/
}

#wrapper.toggled #sidebar-wrapper {
  width: 300px;
}

#page-content-wrapper {
  width: 100%;
  position: absolute;
  padding: 10px;
}

#wrapper.toggled #page-content-wrapper {
  position: absolute;
  margin-right: -250px;
}

/* Sidebar Styles */
.sidebar-nav {
  position: absolute;
  top: 0;
  width: 300px;
  margin: 0;
  padding: 10px;
  list-style: none;
}
.sidebar-nav li a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.3);
  -moz-border-radius: 0px / 0px;
  -webkit-border-radius: 0px 0px;
  border-radius: 0px / 0px;
  margin-bottom: 2px;
}
.sidebar-nav li a:hover {
  text-decoration: none;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}
.sidebar-nav li a:active, .sidebar-nav li a:focus {
  background: rgba(0, 0, 0, 0.5);
}
.sidebar-nav .sub-menu li a {
  background: rgba(0, 0, 0, 0.1);
  text-indent: 15px;
  font-weight: 100;
}
.sidebar-nav .sub-menu li a:hover, .sidebar-nav .sub-menu li a:active, .sidebar-nav .sub-menu li a:focus {
  color: #16a085;
  font-weight: 500;
}
.sidebar-nav .sidebar-brand {
  margin-bottom: 10px;
  padding-bottom: 10px;
  -moz-box-shadow: 0px 3px 0px #1a252f;
  -webkit-box-shadow: 0px 3px 0px #1a252f;
  box-shadow: 0px 3px 0px #1a252f;
}
.sidebar-nav .sidebar-brand a {
  color: #999999;
}
.sidebar-nav .sidebar-brand a:hover {
  color: #fff;
  background: none;
}
.sidebar-nav .sidebar-brand img {
  margin: 0 auto;
}
.sidebar-nav .caret {
  margin-top: 8px;
}

@media (min-width: 768px) {
  #wrapper {
    padding-left: 300px;
  }

  #wrapper.toggled {
    padding-left: 0;
  }

  #sidebar-wrapper {
    width: 300px;
  }

  #wrapper.toggled #sidebar-wrapper {
    width: 0;
  }

  #page-content-wrapper {
    position: relative;
    padding: 10px;
  }

  #wrapper.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0;
  }
}
