/* VARIABLES */
/* BASE */

html,
body {
  font-family: 'PT Serif Caption', 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;
  margin: 0 20px;
}
*/

.header-icon {
  margin-top: 18px;
  margin-left: 18px;
}

.header__logo .logo-fill {
  fill: #025682;
  width: 100px;
}

.site-content {
  /* padding-top: 66px; */
  padding-top: 0px;
}

/* HEADER */
.header {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  line-height: 90px;
  color: #6884D4;
  background-color: white;
  z-index: 3;
}

.header__logo {
  font-weight: 700;
  padding: 0 25px;
  float: left;
}

/* MENU */
.menu {
  float: right;
  margin-right: 25px;
}

.menu a {
  padding: 0 15px;
}

.menu a:hover {
  color: #404040;
}

.site-content-landing {
  position: relative;
}

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

  .site-container {
    overflow: hidden;
  }

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

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

  .site-content-landing {
    position: absolute;
  }

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

  .header__icon:after {
    content: '';
    position: absolute;
    display: block;
    width: 1rem;
    height: 0;
    top: 16px;
    left: 15px;
    box-shadow: 0 10px 0 1px #025682, 0 16px 0 1px #025682, 0 22px 0 1px #025682;
  }

  .menu {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: white;
    width: 250px;
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
  }

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

  .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);
    z-index: 4;
  }
}
