.lang-switcher {
    position: relative;
    display: flex;
    font-size: 14px;
    margin: 0 20px;
}
.lang-switcher__toggle {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}
.lang-switcher__toggle .fi{
    margin-right: 5px;
}
.lang-switcher__caret {
    margin-left: 6px;
    opacity: .6;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
}

.lang-switcher__list {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-top: 6px;
    padding: 6px 0;
    min-width: 150px;
    z-index: 999;
}
.lang-switcher.open .lang-switcher__list { display: block; }

.lang-switcher__item {
    display: block;
    padding: 4px 10px;
    text-decoration: none;
    color: #222;
    background-color: #fbfbfb;
}
.lang-switcher__item:hover { background: #f7f7f7; }
.lang-switcher__item.is-current {
    font-weight: 600;
    color: #0a66ff;
    background: #eef4ff;
}
.lang-switcher__tick { float:right; opacity:.7; }

@media (max-width: 1280px) {
    .lang-switcher .lang-switcher__list{
        left: unset;
        right: 0;
    }
}