.ww-actions .country-switcher {
    position: relative;
    flex: 0 0 auto;
}

.ww-actions .country-switcher__trigger {
    display: inline-flex;
    min-width: 56px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 4px 7px 4px 5px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, .72);
    cursor: pointer;
}

.ww-actions .country-switcher__trigger:hover,
.ww-actions .country-switcher__trigger[aria-expanded="true"] {
    border-color: rgba(28, 173, 117, .72);
    background: rgba(28, 173, 117, .10);
    color: #fff;
}

.ww-actions .country-switcher__trigger > i {
    font-size: 10px;
    transition: transform 120ms ease;
}

.ww-actions .country-switcher__trigger[aria-expanded="true"] > i {
    transform: rotate(180deg);
}

.ww-actions .country-switcher__flag,
.ww-actions .country-switcher__option-flag {
    display: block;
    overflow: hidden;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .14);
    background: #15181b;
}

.ww-actions .country-switcher__flag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.ww-actions .country-switcher__option-flag {
    width: 32px;
    height: 22px;
    border-radius: 4px;
}

.ww-actions .country-switcher__flag img,
.ww-actions .country-switcher__option-flag img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ww-actions .country-switcher__menu {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 8px);
    right: 0;
    width: 236px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    background: #15181b;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .42);
}

.ww-actions .country-switcher__link {
    display: grid;
    min-height: 46px;
    grid-template-columns: 32px 1fr 16px;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 7px;
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.ww-actions .country-switcher__link:hover,
.ww-actions .country-switcher__link:focus-visible {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.ww-actions .country-switcher__link.is-current,
.ww-actions .country-switcher__link > i {
    color: #1cad75;
}

@media (max-width: 760px) {
    .ww-actions .country-switcher {
        display: none;
    }
}
