/* .language-switcher {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
}

.language-switcher img {
    width: 20px;
    height: 15px;
    margin-right: 5px;
    vertical-align: middle;
}

.language-switcher span {
    font-size: 14px;
    font-weight: bold;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    width: 120px;
    z-index: 1000;
}

.language-dropdown.show {
    display: block;
}

.language-dropdown li {
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.language-dropdown li img {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.language-dropdown li:hover {
    background: #f0f0f0;
}
 */

.switch-lang {
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
    user-select: none;
}
.current-lang, .selecting-lang{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 4px;
    text-decoration: none;
    color: #5a5c69;
}
.lang-flag{
    width: 15px;
    margin-right: 4px;
}
.lang-dropdown {
    margin-top: 2px;
    position: absolute;
    display: none;
    background: #f8f9fc;
    border-radius: 5px;
    border: 1px solid #5a5c69;
}
.selecting-lang:hover {
    color: #f8f9fc;
    border-radius: 4px;
    background: #22313f;
}
.show {
    display: block !important;
}