#bpb-nav {
    width: 100vw;
    background: white;

    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;

    z-index: 1000;
}
#bpb-nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
    padding-right: 30px;
    padding-top: 25px;
    padding-bottom: 25px;

}

#bpb-nav #logo {
    height: 35px;
}

#bpb-nav-accounts {
    display: flex;
}

#bpb-nav-accounts > div {
    background: #F6F9FC;
    border-radius: 18px 18px 0 0;

    font-family: Helvetica;
    font-size: 16px;
    letter-spacing: 0;
    text-align: center;
    font-weight: bold;

    color: rgba(75,84,97,0.45);

    display: flex;
    justify-content: center;
    align-items: center;

    width: 193px;
    height: 40px;

    margin-right: 5px;

    cursor: pointer;
}

#bpb-nav-accounts > div[active] {
    color: #4B5461;
}

#bpb-nav-left {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: white;
    padding-top: 100px;
    width: 192px;
}

#bpb-nav-left > * {
    margin-left: 20px;
    cursor: pointer;
    font-family: Helvetica;
    font-size: 14px;
    color: #74798C;
    letter-spacing: 0;
    line-height: 52px;
    font-weight: bold;
}

#bpb-nav-left > * > span {
    margin-left: 25px;
}

#bpb-nav-left > *[mode=enabled] > img[data-disabled],
#bpb-nav-left > *[mode=disabled] > img[data-enabled]{
    display: none;
}
