body {
    margin-top: 60px;
}

button {
    line-height: initial;
}

#header {
    width: 100vw;
    height: 56px;
    line-height: 56px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #292c37;
    color: #fff;
    vertical-align: middle;
    border-bottom: 1px solid #333;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    white-space: nowrap;
}

#header .logo {
    position: relative;
    display: inline-block;
    background-color: #fff;
    border-radius: 4px;
    line-height: 40px;
    height: 40px;
    width: 127px;
    margin: 8px 5px;
    text-align: center;
}

#header .logo img {
    height: 32px;
}

#header .logo span {
    color: #000;
    font-size: 14px;
}

#header .title {
    margin: 0 8px;
}

#header .menu {
    flex-grow: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

#header .menu a {
    text-decoration: none;
    height: 56px;
    color: #fff;
    padding: 0 12px;
    white-space: nowrap;
}

#header a .fas {
    font-size: 120%;
    margin: 0 6px;
    vertical-align: baseline;
}

#header a:hover, #header a.current {
    background-color: #ccc;
    border-bottom: 4px solid #40a4c8;
    color: #000;
}