.lang-dropdown {
    position: relative;
    min-width: 100px;
    font-family: inherit;
    z-index: 999;
}

.lang-selected {
    width: 100%;
    padding: 10px 14px;
    background: #fff;
    border: none;
    /*border-radius: 10px;*/
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-selected:hover {
    border-color: #aaa;
}

.lang-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    list-style: none;
    padding: 6px 0;
    margin: 0;
    display: none;
    z-index: 10;
}

.lang-options li {
    padding: 8px 14px;
    cursor: pointer;
}

.lang-options li:hover {
    background: #f5f5f5;
}

.lang-options li.active {
    font-weight: 600;
    background: #eee;
}

.lang-dropdown.open .lang-options {
    display: block;
}

.arrow {
    font-size: 12px;
}
