    body {
        margin: 0;
        padding: 0;
    }
    
    #header-spacer {
        padding-top: 50px;
    }
    
    div#header {
        background-color: #000;
        display: flex;
        justify-content: center;
        position: fixed;
        width: 100%;
    }
    
    nav#primary-navbar {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: flex-start;
        width: 100%;
        max-width: 1140px;
        height: 50px;
    }
    
    div#primary-navbar-header {
        display: flex;
        align-items: center;
        margin: 5px;
    }
    
    img#header-company-logo {
        height: 26px;
    }
    
    span.header-vertical-divider {
        border-right: 2px solid white;
        height: 30px;
        margin-left: 14px;
    }
    
    div#header-provider-name {
        color: #fff;
        font-family: "Segoe UI Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 600;
        font-size: 16px;
        padding: 5px;
        padding-top: 7px;
        padding-left: 10px;
        padding-right: 7px;
        margin: 0px 5px;
        margin-top: 0px;
    }
    
    div#header-provider-name.toggle-provider:hover {
        background-color: rgb(71, 71, 71);
        cursor: pointer;
    }
    
    div#header-provider-name.toggle-provider.active {
        background-color: rgb(58, 57, 57);
    }
    
    span.down-arrow {
        font-size: 12px;
        padding-left: 9px;
        padding-right: 5px;
        position: relative;
        top: -1px;
        line-height: 0px;
    }
    
    div#header-provider-list {
        display: none;
        margin-left: 48px;
        transform: translate(0%, 0%);
        position: absolute;
        z-index: 99;
    }
    
    div#header-provider-list ul {
        list-style: none;
        background-color: white;
        border: 1px solid rgb(192, 192, 192);
        margin: 25px 0px 0px 0px;
        padding: 0;
        position: absolute;
    }
    
    .header-provider-list-element {
        padding: 6px;
        cursor: pointer;
        margin: 5px;
        font-family: "Segoe UI Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 600;
        color: black;
        font-size: 16px;
        white-space: nowrap;
    }
    
    .header-provider-list-element:hover {
        background-color: #dadada
    }
    
    .header-provider-list-element:focus {
        background-color: #bbbbbb;
    }
    
    .header-provider-list-element.active {
        color: rgb(175, 175, 175);
        display: none;
    }
    
    div#primary-navbar-links {
        border: 1px dashed green;
        width: 100%;
        display: none;
    }
    
    .navbar.navbar-inverse.navbar-static-top .container .navbar-header .visible-sm-block.visible-md-block.visible-lg-block.navbar-brand {
        display: flex!important;
        align-items: center;
        height: 50px;
    }
    
    #header-company-logo {
        display: none;
    }
    
    img#header-company-logo-mobile {
        height: 27px;
    }
    /* lock screen */
    
    div#window-overlay {
        position: absolute;
        z-index: 100;
        background: lightgray;
        opacity: 0.9;
        width: 100%;
        height: -webkit-fill-available;
        padding-top: 150px;
        display: none;
    }
    
    #window-overlay #loading-message {
        display: flex;
        justify-content: center;
        font-size: 22px;
        margin-top: 12px;
    }
    
    div#window-spinner {
        display: flex;
        justify-content: center;
        font-size: 40px;
    }
    
    i.fa.fa-spinner {
        animation: spin 2s linear infinite;
    }
    
    .linear {
        animation-timing-function: linear;
    }
    
    .infinite {
        animation-iteration-count: infinite;
    }
    
    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(359deg);
        }
    }
    
    @media screen and (min-width: 768px) {
        #header-company-logo {
            display: block!important;
        }
        #header-company-logo-mobile {
            display: none!important;
        }
        div#header-provider-list {
            margin-left: 135px;
        }
    }