body,
html {
  height: 100%;
  margin: 0;
  font-family: sans-serif;
  font-weight: 100;
}
.frozen {
  overflow: hidden;
}
.container {
  position: relative;
  height: 100%;
  width: 100%;
  left: 0;
  -webkit-transition: left 0.4s ease-in-out;
  -moz-transition: left 0.4s ease-in-out;
  -ms-transition: left 0.4s ease-in-out;
  -o-transition: left 0.4s ease-in-out;
  transition: left 0.4s ease-in-out;
}
.container.open-sidebar {
  left: 240px;
}
.container.open-sidebar #sidebar {
  -webkit-overflow-scrolling: touch;
}
.swipe-area {
  position: absolute;
  width: 50px;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  background: #f3f3f3;
  z-index: 0;
  -webkit-transition: left 0.4s ease-in-out;
  -moz-transition: left 0.4s ease-in-out;
  -ms-transition: left 0.4s ease-in-out;
  -o-transition: left 0.4s ease-in-out;
  transition: left 0.4s ease-in-out;
}
#sidebar {
  position: absolute;
  background: #2b2b2b;
  width: 240px;
  height: 100%;
  top: 0;
  bottom: 0;
  left: -240px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  overflow: hidden;
}
#sidebar ul {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  top: 0;
  left: 0;
}
#sidebar ul li {
  margin: 0;
  padding: 0;
}
#sidebar ul li a {
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 100;
  color: white;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #222;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -ms-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
#sidebar ul li:hover a {
  background: #002a52;
}
.main-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.main-content .content {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-left: 60px;
  width: 100%;
}
.main-content .content h1 {
  font-weight: 100;
}
.main-content .content p {
  width: 100%;
  line-height: 160%;
}
#sidebar-toggle {
  position: absolute;
  background: #999;
  border-radius: 3px;
  display: block;
  padding: 10px 7px;
  float: left;
}
#sidebar-toggle .bar {
  display: block;
  width: 18px;
  margin-bottom: 3px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
}
#sidebar-toggle .bar:last-child {
  margin-bottom: 0;
}
