.mobile-user-panel__container {
    display: flex;

    margin: .3em 0 1.5em 0;

    font-size: 1em;

    justify-content: space-between;
}

.mobile-user-panel__username,
.mobile-user-panel__log-btn {
    vertical-align: middle;
    text-transform: uppercase;

    font-weight: bold;
}

.mobile-user-panel__username {
    overflow: hidden;
    display: inline-block;
    max-width: 9em;
    margin-right: 1em;
    padding-left: 2em;

    white-space: nowrap;
    text-overflow: ellipsis;

    color: #5fafd2;
    background-image: url(../svg/login_name.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}

.mobile-user-panel__log-btn {
    color: #333;
}

@media (min-width: 768px) {
    .mobile-user-panel__container {
        margin: 1em 0 1.5em 0;

        font-size: 1.5em;
    }
    .mobile-user-panel__username {
        max-width: 14em;
    }
}

@media (min-width: 1020px) {
    .mobile-user-panel__container {
        display: none;
    }
}
