html,
body {
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  line-height: 1.4;
  height: 100%;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  overflow: hidden;
  zoom: 1;
}

.site-content {}

/* HEADER */

.header {
  position: fixed;
  left: 0;
  right: 0;
  height: 134px;
  color: #fff;
  background-color: #333;
}

.header__logo {
  padding-top: 15px;
  line-height: normal;
  width: 100px;
  display: block;
  margin: 0 auto;
}

.site-pusher,
 .site-container { height: 100%; }

.site-container { overflow: hidden; }

.site-pusher {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -ms-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.site-content {
  background: #fff;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.header { position: static; }

.header__icon {
  position: relative;
  display: block;
  float: left;
  width: 86px;
  height: 74px;
  cursor: pointer;
}

.header__icon:after {
  content: '';
  position: absolute;
  display: block;
  width: 2.5rem;
  height: 0.3px;
  top: 17px;
  left: 23px;
  box-shadow: 0 10px 0 2px #fff, 0 22px 0 2px #fff, 0 34px 0 2px #fff;
}

.menu {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #555;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  width: 200px;
  -ms-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.menu a {
  display: block;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-bottom: 1px solid #3f51b5;
}

.with--sidebar .site-pusher {
  -ms-transform: translateX(200px);
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}

.with--sidebar .site-cache {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}