header#masthead{
    display: flex;
    align-items: center;
    position: fixed;
    /*top: 0; //if fixed add admin-bar offset */
    left: 0;
    background: #1E0013;
    /* width: calc(100% - 64px); */
    width: 100vw; /* 100% */
    height: 80px;
    padding: 24px 32px;
    z-index: 99;
}
header#masthead a:hover, header#masthead:active{
    text-decoration: none;
}
/* Branding */
#branding img{
    /*float: left;*/
    display: inline-block;
}

#branding a{
    color: #fff;
    font-size: 1.125rem;
}

/* Breadcrumbs */
.breadcrumb{
    font-size: 0.875em; /* 14px */
}
.breadcrumb ol{
    margin: 0 0 0 8px;
    padding: 0;
    display: flex;
}
.breadcrumb li{
    display: inline-flex;
    align-items: center;
}
.breadcrumb li:before{
    content: '';
    /*content: '→';*/
    color: #547aee;
    background: url(../images/arrow-breadcrumbs.svg) 50% 50% no-repeat;
    width: 9px;
    height: 16px;
    float: left;
    margin: 0 8px;
}
.breadcrumb li a{
    text-decoration: none;
}
.breadcrumb li span{
    color: #C4BEB6;
    font-weight: bold;
}
/* User Menu */
.user-menu,
.login-menu{
    margin-left: auto;
    display: flex;
}
.user-menu a,
.login-menu a{
    display: inline-block;
    margin-left: 30px;
}
.user-menu a svg{
    display: block;
}
.user-menu a:hover svg path{
    fill: #fff;
}
.user-menu a:active svg path{
    fill: #547aee;
}

.mobile-label{display: none;}
