﻿.pusher::-webkit-scrollbar {
    width: 8px;
}

/* Track */
.pusher::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px grey;
    border-radius: 10px;
}

/* Handle */
.pusher::-webkit-scrollbar-thumb {
    background: #363636;
    border-radius: 10px;
}

    /* Handle on hover */
    .pusher::-webkit-scrollbar-thumb:hover {
        background: #ccc;
    }


.default-menu-trigger, .mobile-menu-trigger {
    display: block;
    top: 0;
    left: 0;
    z-index: 20;
    width: 54px;
    transition: all .5s ease;
}

.default-menu-trigger {
    position: fixed;
    height: 100%;
    padding: 3.375em 0 0;
    background: #111;
    transition: background-color .25s ease;
    display: block;
}



.mobile-menu-trigger {
    display: block;
    position: absolute;
    height: 54px;
    background: #2b2b2b;
    -ms-transform: translate(0,0);
    transform: translate(0,0);
}

.menu-open .mobile-menu-trigger {
    -ms-transform: translate(226px,0);
    transform: translate(226px,0);
}

.hamburger {
    display: block;
    position: absolute;
    top: 20px;
    left: 50%;
    margin-left: -13px;
    width: 28px;
    height: 18px;
    /*background-image: url("hamburger.svg");*/
    background-position: 0 0;
    background-size: 100% 100%;
    text-indent: -119988px;
    overflow: hidden;
    text-align: left;
    transition: all .5s ease;
    -webkit-transform-style: preserve-3d;
}

    .hamburger div {
        width: 18px;
        height: 2px;
        background-color: #ccc;
        margin: 4px auto;
        animation: hamburger-left .5s ease;
    }

.menu-open .hamburger div {
    animation: hamburger-right .5s ease;
}

    .menu-open .hamburger div:nth-child(2) {
        animation: hamburger-left .5s ease;
    }

.hamburger div:nth-child(2) {
    animation: hamburger-right .5s ease;
}

@keyframes hamburger-left {
    50% {
        transform: translate(-6px, 0px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes hamburger-right {
    50% {
        transform: translate(6px, 0px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

.menu-open .pusher {
    -ms-transform: translate(54px,0);
    transform: translate(54px,0);
}

.menu-open .pusher .mp-level {
    /*to unhide navigation from tabbing when open*/
    display: block;
}

    .pusher {
    background: #2b2b2b;
    z-index: 10;
    height: 100%;
    width: 230px;
    top: 0;
    left: 0;
    overflow: auto !important;
    border-left: 1px solid #2B2B2B;
    -webkit-transform-style: preserve-3d;
    transition: all 0.5s ease 0s;
    transform-style: preserve-3d;
    -ms-transform: translate(-226px,0);
    transform: translate(-226px,0);
}

    .pusher .mp-level {
        background: #363636;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        padding-top: 3.375em;
        transition: all .5s ease;
        /*to hide navigation from tabbing when collapsed*/
        display: none;
    }

    .pusher ul li {
        font-family: 'Muli', sans-serif;
        margin: 0;
        padding: 0;
    }

        .pusher ul li li {
            margin: 5px 0;
            background-color: #464646;
        }

            .pusher ul li li a {
                font-family: Kirsty, 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
                font-size: 1em;
                padding: .8em 20px;
                border-left: 3px #464646 solid;
            }

        .pusher ul li a:after {
            content: ' ';
            display: inline-block;
            height: 11px;
            margin-top: -6px;
            position: absolute;
            right: 30px;
            top: 50%;
            width: 7px;
        }

    .pusher .expanded > a:after {
        background-image: url("../assets/chevron.svg");
        background-position: 0 0;
        background-size: 100% 100%;
        transition: transform .5s ease;
    }

.isExpanded:after {
    transform: rotate(90deg);
}

.pusher ul li a.active-trail {
    border-left-color: #444;
}

.pusher ul li a.active, .pusher ul li a.active-trail {
    background-color: #222;
    border-left-style: solid;
}

.pusher ul li a.active {
    border-left-color: #7a0026;
}

.pusher ul {
    margin: 0;
    padding: 0;
}

    .pusher ul ul {
        list-style-type: none;
    }

.mp-sub-level {
    display: none;
    overflow: hidden;
    height: 0;
}



.nav-category {
    color: #ccc;
    list-style-type: none;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #222;
    font-family: Kirsty, 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-style: italic;
    background-color: inherit !important;
    font-size: 1.2em;
}

.pusher ul ul a {
    font-weight: 400;
    font-family: 'Muli', sans-serif;
}

.pusher ul li a {
    display: block;
    position: relative;
    padding: 1em 20px;
    border-left: 3px #363636 solid;
    color: #ccc;
    text-decoration: none;
    font-size: .8125em;
    transition: all .25s ease;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

    .pusher ul li a:focus, .pusher ul li a:hover {
        background-color: #464646;
        border-color: #464646;
    }

.pusher ul li li a:focus, .pusher ul li li a:hover {
    background-color: #525151;
    border-color: #525151;
}

.slice {
    clear: both;
    position: relative;
}

@media (min-width: 1280px) {
    .menu-closed .slice {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 768px) {
    .mobile-menu-trigger {
        display: none;
    }

    .pusher {
        position: fixed;
    }
}

@media (max-width: 767px) {
    .mobile-menu-trigger {
        background-color: #101010;
    }
    .default-menu-trigger {
        -ms-transform: translate(-54px,0);
        transform: translate(-54px,0);
        display: none;
    }

    .menu-open .pusher {
        -ms-transform: translate(0,0);
        transform: translate(0,0);
    }

    .pusher {
        -ms-transform: translate(-280px,0);
        transform: translate(-280px,0);
        position: absolute;
    }
}
