<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.country-selector {
    position: relative;
}
.country-selector__button {
    font: inherit;
    font-size: 14px;
    max-width: 150px;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    background: none;
    outline: none;
    display: flex;
    text-align: inherit;
    align-items: center;
}
.country-selector__button-flag {
    width: 22px;
    /*height: 16px;*/
    flex: 0 0 auto;
}
.country-selector__button-text {
    min-width: 1px;
    display: none;
    flex: 1 1 auto;
}
.country-selector__button-icon {
    height: 16px;
    width: 16px;
    margin-left: 8px;
    flex: 0 0 auto;
}
.country-selector.show .country-selector__button-icon {
    transform: scaleY(-1);
}
.country-selector__popup {
    position: absolute;
    top: 100%;
    left: 0;
    width: 256px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin: 10px 0 0 -16px;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    background: #fff;
    display: none;
    overflow: hidden;
    white-space: nowrap;
    color: #141414;
    z-index: 700;
}
.country-selector__item {}
.country-selector__link {
    font-size: 14px;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    color: inherit;
}
.country-selector__link:hover {
    background: #f3f3f6;
    color: inherit;
}
.country-selector__link-flag {
    width: 22px;
    /*height: 16px;*/
    margin-right: 8px;
    flex: 0 0 auto;
}
.country-selector__link-text {
    min-width: 1px;
    flex: 1 1 auto;
}
.country-selector__link-icon {
    height: 16px;
    width: 16px;
    display: none;
    flex: 0 0 auto;
}
.country-selector__item.current .country-selector__link-icon {
    display: block;
}

@media (min-width: 479px) {}
@media (min-width: 1023px) {
    .country-selector__button-flag {
        margin-right: 8px;
    }
    .country-selector__button-text {
        display: block;
    }
}
@media (min-width: 1439px) {
    .country-selector__button {
        max-width: none;
        white-space: nowrap;
    }
}</pre></body></html>