
/* HEADER */
.header {
  position: fixed;
  left: 0;
  right: 0;
  height: 66px;
  line-height: 66px;
}

/* MENU */
.menu {
  float: left;
  font-size:12px;

}
.menu a {
  padding: 0 10px;
  color: #fff;
}

/* RESPONSIVE */
@media only screen and (max-width: 768px) {
  .site-pusher,
  .site-container {
    height: 100%;

  }
  .site-container {
  }

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

  .site-content {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    bottom: 0;
    padding-top: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .header {
    position: static;
  }

  .header__icon {
    position: relative;
    display: block;
    float: left;
    width: 40px;
    height: 66px;
    cursor: pointer;
	color: #000;
  }
  .header__icon:after {
    content: '';
    position: absolute;
    display: block;
    width: 2rem;
    height: 0;
    top: 16px;
    left: 15px;
    box-shadow: 0 10px 0 1px #4eb3e9, 0 16px 0 1px #4eb3e9, 0 22px 0 1px #4eb3e9;
  }

  .menu {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #4cb3e9;
    /*    overflow-y: scroll;
        -webkit-overflow-scrolling: touch;*/
    width: 289px;
	  height: 100vh;
    -webkit-transform: translateX(-290px);
    transform: translateX(-290px);
  }
  .menu a {
    display: block;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-bottom: 1px solid #fff;
  }

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