
/* APP BAR */
.appbar{
  position: fixed;
  z-index: 3;
  left: 180px;
  top: 0;
  right: 0;
  padding: 7px 10px 0 7px;
  background: #fff;
  border-bottom: solid 1px #f5f5f5;
  box-shadow: 0 0 10px -8px #000;
}
.appbar h1,
.appbar h2,
.appbar h3,
.appbar h4,
.appbar h5{
  margin: 0;
  padding: 10px;
}
.appbar .icon{
  padding: 10px;
}

.logo{
  width: 100px;
  height: 40px;
  background: url('/assets/images/logo.png') no-repeat;
  background-size: 100% auto;
  background-position: center;
}

.sidebar{
  position: fixed;
  left: 0;
  top: 0;
  width: 180px;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #252525;
  line-height: 1.5em;
  box-shadow: 0 0 2px #303030;
  z-index: 4;
}
.sidebar-head{
  position: fixed;
  left: 0;
  top: 0;
  width: 180px;
  height: 48px;
  background: rgba(33, 33, 33, .8);
  z-index: 2;
}
.sidebar-body{
  margin: 72px 0 48px 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.sidebar .userbar{
  padding: 10px;
}
.sidebar .userbar *{
  vertical-align: middle;
}
.sidebar *{
  color: #ccc;
}
.sidebar h5{
  padding: 5px 10px 0 10px;
}
.sidebar .ul-head{
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 300;
  position: relative;
  margin: 10px 0;
}
.sidebar .ul-head .fa{
  position: absolute;
  right: 0;
  top: 0;
  padding: 8px 16px;
}
.sidebar ul{
}
.sidebar li{
  padding: 5px 10px 5px 25px;
  cursor: pointer;
  text-align: left;
}
.sidebar li a{
  display: block;
}
.sidebar-foot{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 180px;
  border-top: solid 1px #333;
  background-color: #252525;
}
.sidebar-foot>.icon{
  padding: 16px;
}
.sidebar .line{
  border-bottom: solid 1px #333;
}

.content{
  margin-left: 180px;
  margin-top: 44px;
}