#top_bar {
    position: relative;
    padding: 10px 2.5%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #efefef;
    display: table;
    width: 95%;
}

#top_bar > * {
    padding: 5px;
    margin: 5px 0;
}

/* Le menu mobile et le dropdown de compte partagent le meme fragment HTML.
 * La mise en table legacy ne doit jamais rendre les deux simultanement. */
#top_bar > .core-account-mobile {
    display: none;
}

@media only screen and (min-width: 481px) {
    #top_bar {
        display: table;
        position: absolute;
        right: 1.5%;
        width: auto;
    }

    #top_bar > * {
        padding: 0 5px;
        vertical-align: middle;
        display: table-cell;
    }

    #top_bar > .core-account-mobile {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    #top_bar {
        right: 2.5%;
    }
}

@media only screen and (min-width: 1025px) {
    #top_bar {
        position: relative;
        right: 0;
        float: right;
    }

    .rtl #top_bar {
        float: left;
    }
}
