/* Layout */

.header {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 40px;
    background: #d8131d;
    background: linear-gradient(to bottom, #d8131d 0%, #bf111a 100%);
    border-bottom: 1px solid #a60f16;
}

.header--light {
    background: linear-gradient(to right, #fff 10%, #bf111a 70%);
}

.header-left {
    display: table-cell;
    vertical-align: middle;
    width: 83px;
    padding-left: 4px;
}

.header-center {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}

/* Logo */

.header-logo {
    display: flex;
    align-items: center;
    width: 100px;
    height: 40px;
    overflow: hidden;
}

.header-logo > img {
    display: block;
    max-width: 100px;
    max-height: 32px;
}