.navbar, .navbar .logo {
    padding: 0;
    color: #fff;
    margin: 0
}

.drawermenu, .navbar {
    background-color: #383E42;
}

.drawermenu, .drawermenu-overlay {
    position: fixed;
    top: 0;
    height: 100%
}

.navbar {
    width: 100%;
    height: 50px;
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    justify-content: space-between;
    -webkit-justify-content: space-between
}

    .navbar .logo {
        display: block;
        font-size: 18px;
        line-height: 50px
    }

        .navbar .logo a {
            color: #fff;
            text-decoration: none
        }

            .navbar .logo a:hover {
                color: #e0e0e0
            }

            .navbar .logo a img, .navbar .logo a svg {
                height: 20px;
                line-height: 100%;
                width: auto;
                vertical-align: bottom;
                padding: 15px 0
            }

                .navbar .logo a svg path {
                    vertical-align: bottom;
                    fill: #fff
                }

    .navbar .menu-left, .navbar .menu-right {
        display: block;
        height: 17px;
        width: 50px;
        padding: 18px 20px
    }

        .navbar .menu-left svg, .navbar .menu-right svg {
            height: 17px;
            width: auto;
            line-height: 100%;
            cursor: pointer
        }

    .navbar .menu-left {
        order: 0;
        text-align: left
    }

    .navbar .logo {
        order: 1;
        text-align: center
    }

    .navbar .menu-right {
        order: 2;
        text-align: right
    }

    .navbar .hamburger {
        height: 20px
    }

        .navbar .hamburger rect {
            fill: #fff
        }

        .navbar .hamburger:hover rect {
            fill: #e0e0e0
        }

.drawermenu {
    left: -250px;
    width: 250px;
    max-width: 70%;
    z-index: 10002
}

    .drawermenu.drawermenu-right {
        left: auto;
        right: -250px
    }

    .drawermenu > dl, .drawermenu > ul {
        list-style: none;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
        overflow-y: auto;
        height: 100%
    }

        .drawermenu > dl > li, .drawermenu > ul > li {
            width: 100%;
            border-bottom:1px solid #cdcdcd;
        }

            .drawermenu > dl > li > a, .drawermenu > ul > li > a {
                font-size: 14px;
                display: block;
                width: 100%;
                padding: 10px;
                text-decoration: none;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                -o-box-sizing: border-box;
                -ms-box-sizing: border-box;
                box-sizing: border-box;
                color: #fff;
                background-color: #383E42;
                border-bottom: solid 1px rgba(255,255,255,.1)
            }

                .drawermenu > dl > li > a .icon-down, .drawermenu > ul > li > a .icon-down {
                    fill: #fff;
                    width: 8px;
                    margin-left: 10px
                }

            .drawermenu > dl > li > ul, .drawermenu > ul > li > ul {
                display: none;
                list-style: none;
                padding: 0;
                margin: 0
            }

                .drawermenu > dl > li > ul > li > a, .drawermenu > ul > li > ul > li > a {
                    display: block;
                    font-size: 13px;
                    color: #fff;
                    padding: 5px 15px;
                    text-decoration: none
                }

.drawermenu-overlay {
    display: none;
    cursor: pointer;
    z-index: 10001;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0,0,0,.8)
}
