.ui-navigation-bar {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;
    flex-wrap: wrap;
    align-items: center;

    margin: 0;
    padding: 0 8px;
    width: 100%;
    height: 44px; /* including 0.5px bottom border */
    background-color: rgba(255,255,255,0.85);
    border-bottom:1px solid rgb(178,178,178);

    transform: translate3d(0,0,0);
}

.ui-navigation-bar .left-place {
    flex: 1;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.ui-navigation-bar .center-place {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: nowrap;
}

.ui-navigation-bar .right-place {
    flex: 1;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
}