.mxm_lang_switcher {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.mxm_lang_switcher li {
    list-style: none;
    padding-right: 25px;
}

.mxm_lang_switcher li:last-child {
    padding-right: 0;
}

.mxm_lang_switcher li a {
   display: block;
    text-transform: uppercase;
    color: #2A2A2A;
}
.mxm_lang_switcher li a.active {
    font-weight: bold;
}

@media all and (max-width: 767px) {
    .mxm_lang_switcher {
        justify-content: center;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        padding: 5px 0;
        margin: 10px 0;
    }
}