.bm__header {
    display: flex;
    z-index: 10;
    width: 100%;
    background: var(--header-bg);
    box-shadow: 0px 5px 10px var(--header-shadow);
    height: 90px;
    position: static;
}

.bm__header_pseudo {
    height: 90px;
    display: none;
}

.bm__header__app-name {
    display: flex;
    padding: 15px;
    margin-left: 2rem;
    /*width: 200px;*/
    align-items: center;
}

.bm__header__userarea {
    display: flex;
    margin-left: auto;
    margin-right: 15px;
    padding: 10px;
}

.bm__header__userarea__user {
    display: flex;
}

.bm__header__userarea__user__imgholder {
    height: 48px;
    width: 48px;
    margin-right: 10px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    padding: 6px;
    margin-top: -8px;
}

.bm__header__userarea__user img {
    height: 36px;
    width: 36px;
    border-radius: 50%;
}

.bm__header__userarea__user p {
    font-family: var(--user-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;

    margin-top: 5px;
    color: var(--user-textcolor);
}

.bm__header__userarea__home {
    display: flex;
}

.bm__header__userarea__home img {
    height: 32px;
    width: 32px;
    margin-right: 10px;
}

.bm__header__userarea__home p {
    font-family: var(--user-home-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;

    margin-top: 5px;
    color: var(--user-home-textcolor);
}

.bm__header__userarea__user-dropdown-menu-holder {
    margin-top: 10px;
    margin-left: 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;;
    border: 1px solid transparent;

    display: inline-block;
    position: relative;    
    cursor: pointer;
    padding: 10px;
}

.bm__header__userarea__user-dropdown-menu {
    display: none;
    position: absolute;
    z-index: 12;
    width: 101%;
    background: var(--user-dropdown-menu-bg);
    border: 1px solid var(--user-dropdown-menu-bordercolor);
    border-top: none;
    margin-top: 10px;
    margin-left: -11px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-bottom: 10px;
    box-shadow: 2px 2px 5px var(--header-menu-shadow);
}

.bm__header__userarea__user-dropdown-menu__item {
    display: flex;
    padding: 6px;
}

.bm__header__userarea__user-dropdown-menu__item:hover {
    background: var(--user-dropdown-menu-item-hover);
}

.bm__header__userarea__user-dropdown-menu__item p {
    font-family: var(--navbar-item-font-family);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;

    margin-top: 5px;
    color: var(--user-dropdown-menu-textcolor);
}

.bm__header__userarea__user-dropdown-menu-holder:hover {
    /*background: var(--user-dropdown-menu-bg);*/
    border: 1px solid var(--user-dropdown-menu-bordercolor);
    /*border-bottom: 1px solid transparent;*/
    border-radius: 10px;
}

.bm__header__userarea__user-dropdown-menu-holder:hover .bm__header__userarea__user-dropdown-menu {
    /*display: block;*/
}

.bm__header__menu__icon {
    display: none;
}

/**
 * Media: Mobile Phone
 */
 @media screen and (max-width: 550px) {

    .bm__header {
        position: fixed;
    }

    .bm__header_pseudo {
        display: block;
    }

    .bm__header__menu__icon {
        display: flex;
        padding: 10px;
    }

    .bm__header__menu__icon img {
        width: 32px;
        height: 32px;
        margin-top: auto;
        margin-bottom: auto;
    }

    .bm__header__app-name {
        padding: 5px;
        margin-left: calc(16%);
    }

    .bm__header__userarea {
        display: none;
    }
 }