/*! Pushy - v0.9.2 - 2014-9-13
* 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: 250px;
    height: 100%;
    top: 0;
    z-index: 99999999999;
    background: #2B2B2B;
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}

/* Menu Movement */

.pushy-left{
    -webkit-transform: translate3d(-250px,0,0);
    -moz-transform: translate3d(-250px,0,0);
    -ms-transform: translate3d(-250px,0,0);
    -o-transform: translate3d(-250px,0,0);
    transform: translate3d(-250px,0,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(250px,0,0);
    -moz-transform: translate3d(250px,0,0);
    -ms-transform: translate3d(250px,0,0);
    -o-transform: translate3d(250px,0,0);
    transform: translate3d(250px,0,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);
}

/* Site Overlay */

.site-overlay{
    display: none;
}

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

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

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

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

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



/* ====== PUSHY ======= */
.pushy ul{
    margin:0px;
    padding:0px;
}
.pushy li{
    position: relative;
    list-style: none;
}
.pushy a{
    display:block;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
}
.pushy ul.main{
}
.pushy ul.main li.main{
}
.pushy ul.main li.main a.main{
    color:#FFF;
    font-weight:bold;
    line-height: 45px;
    height: 45px;
    padding: 0 10px;
    border-bottom: 1px solid rgba(255,255,255, 0.1);
}
.pushy ul.main li.main:hover a.main{
    text-decoration:none;
    background:#4993C5;
}
.pushy ul.item{
    display:none;
}
.pushy ul.item li.item{
}
.pushy ul.item li.item a.item{
    color: rgb(187, 187, 187);
    line-height: 35px;
    height: 35px;
    padding: 0 10px;
}
.pushy ul.item li.item:hover a.item{
    text-decoration:none;
    color:#FFF;
    background:#3F3F3F;
}
.pushy ul.children{
    display:none;
}
.pushy ul.children li.children{
}
.pushy ul.children li.children a.children{
    color: rgb(187, 187, 187);
    line-height: 35px;
    height: 35px;
    padding: 0 10px 0 25px;
}
.pushy ul.children li.children:hover a.children{
    text-decoration:none;
    color:#FFF;
}
.pushy .dropdown-1{
    position: absolute;
    top: 0px;
    right: 0px;
    height: 45px;
    width: 45px;
    color: #FFF;
    line-height:45px;
    text-align:center;
}
.pushy .dropdown-2{
    position: absolute;
    top: 0px;
    right: 0px;
    height: 35px;
    width: 45px;
    color: #FFF;
    line-height:35px;
    text-align:center;
}
.pushy::-webkit-scrollbar {
    width: 5px;
}
.pushy::-webkit-scrollbar-button {
    width: 5px;
    height:0px;
}
.pushy::-webkit-scrollbar-track {
    background:#eee;
    border: thin solid lightgray;
}
.pushy::-webkit-scrollbar-thumb {
    background:#999;
    border: thin solid gray;
}
.pushy::-webkit-scrollbar-thumb:hover {
    background:#7d7d7d;
}