/* navsideside */

.header__logo {
  font-weight: 700;
  padding: 0 25px;
  float: left;
}

@media only screen and (max-width: 768px) {
  .site-pusher,
  .site-container {
   position: absolute;
    width: 300px;
   height: 1000px;
  }

  .site-container {
    overflow: hidden;
  }

  .site-pusher {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  .header {
    position: static;
  }

  .header__icon {
    position: relative;
    display: block;
    float: left;
    width: 50px;
    height: 66px;
    cursor: pointer;
  }
  .header__icon:after {
    content: '';
    position: absolute;
    display: block;
    width: 1rem;
    height: 0;
    top: 16px;
    left: 15px;
    box-shadow: 0 10px 0 1px #6b6b6b, 0 16px 0 1px #6b6b6b, 0 22px 0 1px #6b6b6b;
  }

  .navside {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    /*background-color: #ffcc00;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;*/
    width: 250px;
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
  }

  .with--sidebar .site-pusher {
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
  }
  .with--sidebar .site-cache {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
}