.mycond-language-switcher__region-title {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #bbbbbb;
    color: #4fae4d;
    font-weight: 600;
    font-size: 18px;
}
.mycond-language-switcher__region {
    margin-bottom: 20px;
}
.mycond-language-switcher__region:last-child {
    margin-bottom: 0;
}
.mycond-language-switcher__countries {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mycond-language-switcher__country {
    margin-bottom: 8px;
}
.mycond-current-language {
    cursor: pointer;
}
.mycond-current-language .arrow-down {
    background-image: url(../images/arrow-down.svg);
    background-repeat: no-repeat;
    background-size: 12px;
    width: 12px;
    height: 12px;
    display: block;
    background-position: center;
}
.mycond-language-switcher__country-link, .mycond-current-language .mycond-current-language__wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s;
}
.mycond-language-switcher__country-link.no-translate {
    opacity: 0.3;
}
.mycond-current-language .mycond-current-language__wrapper {
    gap: 10px;
    font-size: 15px;
}
.mycond-language-switcher__country-link:hover {
    background-color: #f5f5f5;
}

.mycond-language-switcher__country-link--active {
    font-weight: bold;
    background-color: #f0f0f0;
}

.mycond-language-switcher__flag {
    width: 24px;
    height: 16px;
    margin-right: 8px;
    border: 1px solid #ddd;
}

.mycond-language-switcher__name {
    display: flex;
    flex-direction: column;
}

.mycond-language-switcher__country-name {
    font-size: 14px;
    text-transform: capitalize;
}

.mycond-language-switcher__language-name {
    font-size: 12px;
    color: #666;
}