.lang {
    position: relative;
    z-index: 1000;
    text-align: center;
    background: rgba(157, 157, 157, 0.25);
    flex: 0 0 auto;
    display: inline-block;
}
.lang_fixed {
    position: fixed;
    right: 20px;
    top: 20px;
}
.lang__link {
    cursor: pointer;
    transition: .3s all;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-shrink: 0;
    box-sizing: border-box;
    text-decoration: none;
    border-radius: 2px;
    padding: 4px;
}
.lang__img {
    width: 20px;
    flex-shrink: 0;
    font-size: 10px;
    display: block;
    transition: .3s all;
}
.lang__link_sub:hover {
    filter: drop-shadow(0 0 3px rgb(136, 136, 136)) brightness(130%);
}
.lang__name {
    color: #737b84;
    font-size: 12px;
    line-height: 12px;
    flex-shrink: 0;
    text-transform: uppercase;
}
.lang__list {
    background: rgba(157, 157, 157, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    line-height: 13px;
    padding: 4px;
    box-sizing: border-box;
}
.lang__link_select {
    align-items: flex-start;
    text-align: center;
    font-size: 0;
}
.lang_row {
    width: 100%;
    padding: 0;
    margin: 0;
}
#page-frame__footer .lang {
    display: inline-block;
    margin-top: 24px;
}
@media screen and (max-width: 767px) {
    #header .lang {
        margin: 20px 35px;
    }
}