/*! Pushy - v1.0.0 - 2016-3-1
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */

.pushy {
  position: fixed;
  width: 708px;
  height: 100%;
  top: 0;
  z-index: 9999;
  background: #00a5d5;
  overflow: auto;
  visibility: hidden;
  -webkit-overflow-scrolling: touch;
}

/* position fix of blue header bar */ 
.pushy_top_bar {
  position:fixed;
  right:0;
  z-index: 9999;
  width:708px;
  height:50px;
  background: rgba(77,192,226,1.0);
}

/* navigation ul in 2 columns */
.pushy div.left_col { float:left; width:50%; }
.pushy div.right_col { float:right; width:50%; }

.pushy div.left_col > ul > li { padding:10px 10px 10px 30px; }
.pushy div.right_col > ul > li { padding:10px 30px 10px 10px; }

.pushy ul li.home { margin:125px 0 42px 0; padding:0 30px; }
.pushy-submenu { margin:0 0 30px 0; }
.pushy-submenu ul li { padding:3px 0; }

.pushy ul li a {
  display:block;
  font-family:'Foro Sans W01 Regular';
  font-weight: normal;
  font-style: normal;
  font-size:1em;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color: #1e1e1e;
  outline: 0;
}

.pushy ul li a:hover,
.pushy ul li.pushy-submenu-open > a,
.pushy ul li.active a {

}

.pushy.pushy-left { left: 0; }
.pushy.pushy-right { right: 0; }

/* Menu Movement */
.pushy-right,
.pushy_top_bar {
  -webkit-transform: translate3d(708px, 0, 0);
  -ms-transform: translate3d(708px, 0, 0);
  transform: translate3d(708px, 0, 0);
}

.pushy-open-right .pushy,
.pushy-open-right .pushy_top_bar {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Menu Transitions */
#container,
.pushy,
.push,
.pushy_top_bar {
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay {
  display: none;
}

.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(228, 228, 228, 0.3);
  -webkit-animation: fade 500ms;
  animation: fade 500ms;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Submenu Appearance */
.pushy ul li.home a,
.pushy-submenu ul li a {
  display:block;
  font-family:'Foro Sans W01 Regular';
  font-weight: normal;
  font-style: normal;
  font-size:.9375em;
  text-transform:none;
  color: #fff;
}

.pushy ul li.home a:hover, .pushy ul li.home.active a,
.pushy-submenu ul li a:hover,
.pushy-submenu ul li.active a {
	font-family:'Foro Sans W01 Bold';
}

.pushy-submenu ul {
  padding:0;
  transition: max-height 0.2s ease-in-out;
}
.pushy-submenu ul .pushy-link {
  transition: opacity 0.2s ease-in-out;
}

/* Submenu Movement */
.pushy-submenu-closed ul {
  max-height: 0;
  overflow: hidden;
}
.pushy-submenu-closed .pushy-link {
  opacity: 0;
}

.pushy-submenu-open {
  /* Submenu Icon */
}
.pushy-submenu-open ul {
  max-height: 1000px;
}
.pushy-submenu-open .pushy-link {
  opacity: 1;
}

.no-csstransforms3d .pushy-submenu-closed ul {
  max-height: none;
  display: none;
}

/*# sourceMappingURL=pushy.css.map */

/* less margin between menus if max height 768px */
@media only screen and (max-height : 768px) {

  .pushy ul li.home { margin:90px 0 25px 0; }
  .pushy-submenu { margin:0 0 15px 0; }
  
}

/* align pushy to logo if tablet portrait */
@media only screen and (min-width: 768px) and (max-width: 959px) {

  .pushy-open-right .pushy,
  .pushy-open-right .pushy_top_bar { width:calc(100% - 204px); }

}

/* switch width to fullwidth on small devices */
@media only screen and (max-width : 708px) {

  .pushy { width: 100%; }

  .pushy-right {
      -webkit-transform: translate3d(100%, 0, 0);
      -ms-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
  }

  .pushy-open-right .pushy_top_bar { width:100%; height:40px; }
  .pushy div.left_col > ul > li { padding:10px 10px 10px 20px; }
  .pushy div.right_col > ul > li { padding:10px 20px 10px 10px; }
  .pushy ul li.home { margin:70px 0 20px 0; padding:0 20px; }
  .pushy-submenu { margin:0 0 5px 0; }

  .pushy ul li a { font-size:.75em; line-height:1.25; }
  .pushy ul li.home a, .pushy-submenu ul li a { font-size:.6875em; line-height:1.272727273; }

}
