#sidebar {
  background: #fff;
  width: 260px;
  position: fixed;
  top: 0;
  left: -260px;
  height: 100vh;
  z-index: 999;
  color: #fff;
  overflow-y: scroll;
}

.open-sidebar {
  cursor: pointer;
}

#sidebar, #sidebar * {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#sidebar #close-sidebar {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: rgba(0,0,0,.2);
  float: right;
  cursor: pointer;
  margin: 0 0 0 7px;
}

#sidebar #close-sidebar:hover {
  background: rgba(255,255,255,.4);
}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  display: none;
}

#sidebar .sidebar-header {
  padding: 15px;
  background-image: url("https://content-static.upwork.com/uploads/2014/10/02123010/profilephoto_goodcrop.jpg");
  background-size: cover;
  text-align: left;
  height: 216px;
}

#sidebar > *:not(.sidebar-header):not(ul):not(.full-width) {
  max-width: 230px;
  margin-left: 15px;
}

#sidebar ul li a {
  padding: 10px 15px;
  color: #fff;
  display: block;
  text-decoration: none;
  background: rgba(0,0,0,.1);
  margin-bottom: 1px;
}

#sidebar ul li a:hover, #sidebar ul li.active > a, #sidebar a[aria-expanded="true"] {
  background: rgba(0,0,0,.2);
}

#sidebar hr {
  border-color: rgba(255,255,255,.3);
}

#content {
  /*width: 100%;*/
  /*min-height: 100vh;*/
}

