.app-header-container {
    box-sizing: border-box;
    background: var(--brand-gradient);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: var(--app-header-height);
    width: var(--app-width, 100%);
    color: var(--app-header-color);
}
.app-header-double {
    box-sizing: border-box;
    background: var(--brand-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: var(--app-inner-width);
    margin-left: auto;
    margin-right: auto;
    color: var(--app-header-color);
}

.app-headerbar {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    height: var(--app-header-height);
    width: var(--app-inner-width);
    color: var(--app-header-color);
    padding: 0px 10px 0px 10px;
/*    margin-left: auto;
    margin-right: auto;
*/}

    .app-headerbar a {
        color: white;
    }

.app-headerbar-left {
    display: var(--app-headerbar-left-display);
    justify-items: flex-start;
    padding-left: 10px;
    margin-right: auto;
}
.app-headerbar-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: flex-end;
    padding-right: 10px;
    margin-left: auto;
    height: 100%;
}
.app-headerbar-company {
    font-size: 1.35rem;
    cursor: pointer;
}
.app-headerbar-logo {
    background-color: white;
    white-space: normal;
    height: var(--app-nav-height);
    clear: none;
    float: left;
}

    .app-headerbar-logo a {
        display: flex;
    }

    .app-headerbar-logo img {
        pointer-events: none;
        height: var(--app-nav-height);
        clear: none;
        float: left;
    }

.app-header-fa-icon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: var(--app-header-fa-icon-color);
    margin-left: 5px;
      margin-right: 10px;
}
    .app-header-fa-icon a {
        color: var(--app-header-fa-icon-color);
        display: flex;
    }
        .app-header-fa-icon a:hover {
            text-decoration: none;
        }

.app-headerbar-user {
    display: flex;
    flex-direction: row;
    text-align: center;
    vertical-align: bottom;
    width: fit-content;
    cursor: pointer;
}
.app-headerbar-user-name {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    color: var(--app-text-color, black);
    font-size: 12px;
    width: max-content;
}
.app-headerbar-profile-icon {
    cursor: pointer;
    width: 1.5rem;
    padding: 0px 0px 0px 1rem;
}
    .app-headerbar-profile-icon:hover {
    }
        .app-headerbar-profile-icon:hover .fa-user {
        }

.app-header-cta-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

.app-notification-wrapper {
    position: relative;
    display: inline-block;
}
    .app-notification-wrapper .fa-bell {
        color: #333;
    }
.app-notification-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: red;
    color: white;
    font-size: 10px;
    padding: 2px 2px;
    border-radius: 50%;
    font-weight: bold;
    min-width: 16px;
    text-align: center;
}

/* Responsive: larger format (i.e. larger tables, desktop) */
@media only screen and (min-width: 768px) {
    .app-headerbar-left {
        visibility: visible;
    }
}
/* Responsive: small format (i.e. phones) */
@media only screen and (max-width: 767px) {
    .app-headerbar-left {
        visibility: hidden;
    }
}
