/* fixedNav.css (c) redesign-berlin 2016
------------------------------------------*/

@media (min-width:960px) {
    .fixedNav {
        position: fixed;
        top: 0;
        width: 30%;
        left: 0;
        /*        
        -webkit-transition: all .85s ease;
        transition: all .85s ease;
        */
        z-index: 999999;
    }
}

@media (min-width:1260px) {
    .fixedNav {
        position: fixed;
        top: 0;
        width: 350px;
        left: calc(50vw - 585px);
    }
}