/* Стили для модального окна выбора языка */
.langModalListing {
    display: flex;
    flex-direction: column;
    margin-top: 22px;
}

.langModalListingItem {
    text-decoration: none;
    border-top: 1px solid rgb(255, 255, 255,.1);
    padding: 15px 0;
    display: flex;
    align-items: center;
}
.langModalListingItem svg.checked{
    margin-left:  auto;
}

.langModalListingItem:first-child {
    border-top: none;
    padding-top: 0;
}
.langModalListingItem:last-child {
    padding-bottom: 0;
}

.langModalListingItem.active {
    background-color: rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

.langModalListingItemFlag {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    overflow: hidden;
    border-radius: 50%;
}

.langModalListingItemFlag img {
    display: flex;
    max-width: 100%;
}

.langModalListingItemName {
    font-weight: bold;
    font-size: 15px;
    color: #fff;
}
.langModalListingItem.active .langModalListingItemName{
    color:#B6FF18;
}
