.userblock .lang-selector {
    right: 550px;
}
.lang-selector {
    position: absolute;
    right: 425px;
    top: 15px;
    color: #fff;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Roboto Condensed", sans-serif;
    background: #1A1D0F;
    border: 1px solid #d9a60f;
    width: auto;
    display: inline-block;
    border-radius: 4px;
    padding: 0;
    box-sizing: border-box;
    max-height: 38px;
    /*transition: .2s ease;*/
    overflow: hidden;
    z-index: 2;
    max-width: fit-content;
    transition: all .2s ease;
    white-space: nowrap;
}
.lang-selector.active .lang-selector__item {
    width: auto;
    white-space: nowrap;
}
.lang-selector .lang-selector__item.active {
    padding-right: 26px;
}
.lang-selector.active {
    height: auto;
    min-height: auto;
    max-height: fit-content;
    max-height: -moz-fit-content;
}
.lang-selector.active:after {
    transform: rotate(180deg);
    margin-top: -4px;
}
.lang-selector:after {
    display: block;
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-width: 4px;
    border-style: solid;
    border-color: #d9a60f transparent transparent transparent;
    right: 10px;
    top: 16px;
    transition: .2s ease;
}
.lang-selector__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0 10px 35px;
    border-bottom: 1px solid rgba(216, 216, 216, 0.2);
    flex-shrink: 0;
    cursor: pointer;
    order: 2;
}
.lang-selector__item:not(.active) {
    padding-right: 12px;
}
.lang-selector__item:nth-last-child(1) {
    border-bottom: 0;
}
.lang-selector__item:before {
    content: '';
    display: block;
    width: 18px;
    height: 12px;
    position: absolute;
    left: 12px;
    top: 12px;
}
.lang-selector__item:before {
    background-size: cover;
}
.lang-selector__item:hover {
    background-color: #444444;
}
.lang-selector__item_ru:before {
    background-image: url('../images/ru.svg');
}
.lang-selector__item_en:before {
    background-image: url('../images/en.svg');
}
.lang-selector__item_tr:before {
    background-image: url('../images/turkey.svg');
}
.lang-selector__item_de:before {
    background-image: url('../images/germany.svg');
}
.lang-selector__item_pt:before {
    background-image: url('../images/brazil.svg');
}
.lang-selector__item_zh_cn:before {
    /*background-image: url('../images/zh_cn.svg');*/
}
.lang-selector__item_zh_tw:before {
    /*background-image: url('../images/zh_tw.svg');*/
}
.lang-selector__item.active {
    order: 1;
}
.lang-selector__item_zh_cn, .lang-selector__item_zh_tw {
    padding-left: 10px!important;
}
