.language-selector {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999; /* Самый высокий индекс */
}

.language-btn {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.language-btn img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.language-menu {
    display: none;
    position: absolute;
    bottom: 35px;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    z-index: 10000; /* Высокий индекс для меню */
}

.language-menu a {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
}

.language-menu a:hover {
    background-color: #f0f0f0;
}

.language-menu img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.tmenu-mobile {
    background-color:#525659 !important;
}