.pushy{
  position: fixed;
  width: 100%;
  height: auto;
  padding: 15px 10px 50px 0px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #3d3d3c;
  font-size: 0.9em;
  font-weight: bold;
  overflow: auto;
  -webkit-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .2);
  -moz-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .2);
  box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .2);
  -webkit-overflow-scrolling: touch;
}

.pushy h2{
  font-family: "Lato";
  font-weight: 900;
  color: white;
  margin: 10px;
  padding: 0 0 0 15px;
  text-transform: uppercase;
}

.pushy ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.pushy ul li{
  font: 400 16px/1em "Ubuntu", sans-serif;
}

.pushy ul li a{
  color: #9C9A9B;
  display: block;
  padding: 8px 15px 8px 40px;
  text-decoration: none;
} 

.pushy .top-links {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 0 0 20px 0;
}

.pushy .top-links a{
  color: white;
  font-size: 11px;
  width: 50%;
  padding: 20px 0;
  text-transform: uppercase;
  display: block;
  float: left;
  text-align: center;
}

.pushy .top-links a:first-child{
  border-right: 1px solid rgba(255,255,255,0.2);
}

.pushy .greeting-menu{
  color: white;
  font-size: 11px;
  padding: 10px 10px;
  text-transform: uppercase;
  display: block;
}

.pushy .greeting-menu a{
  color: #f79226;
}

/* Menu Movement */

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

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

.container-push, .push-push{
    -webkit-transform: translate3d(0,100%,0);
    -moz-transform: translate3d(0,100%,0);
    -ms-transform: translate3d(0,100%,0);
    -o-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}

/* Menu Transitions */

.pushy, #container, .push{
    -webkit-transition: -webkit-transform .2s cubic-bezier(.16, .68, .43, .99);
    -moz-transition: -moz-transform .2s cubic-bezier(.16, .68, .43, .99);
    -o-transition: -o-transform .2s cubic-bezier(.16, .68, .43, .99);
    transition: transform .2s cubic-bezier(.16, .68, .43, .99);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}

/* Site Overlay */

.site-overlay{
    display: none;
    background: none;
}

.pushy-active .site-overlay{
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
}
