.wblcs-switcher {
    --wblcs-bg: #fff;
    --wblcs-text: #20242a;
    --wblcs-muted: #70757d;
    --wblcs-border: rgba(22, 27, 34, .10);
    --wblcs-shadow: 0 16px 42px rgba(15, 23, 42, .14);
    position: relative;
    display: inline-flex;
    font: inherit;
    line-height: 1;
    z-index: 9999;
}

.wblcs-trigger {
    appearance: none;
    border: 0;
    background: transparent;
    color: inherit;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 9px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    white-space: nowrap;
}

.wblcs-symbol {
    opacity: .88;
}

.wblcs-chevron {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 3px;
    transition: transform .16s ease;
}

.wblcs-switcher.is-open .wblcs-chevron {
    transform: rotate(225deg) translate(-1px, -1px);
}

.wblcs-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 132px;
    padding: 6px;
    border: 1px solid var(--wblcs-border);
    border-radius: 12px;
    background: var(--wblcs-bg);
    color: var(--wblcs-text);
    box-shadow: var(--wblcs-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity .14s ease, transform .14s ease, visibility .14s ease;
    overflow: hidden;
}

.wblcs-switcher.is-open .wblcs-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wblcs-option {
    width: 100%;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: inherit;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 11px 10px;
    cursor: pointer;
    text-align: left;
    font: inherit;
    line-height: 1.2;
}

.wblcs-option:hover,
.wblcs-option:focus-visible {
    background: rgba(15, 23, 42, .055);
    outline: none;
}

.wblcs-option.is-active {
    background: rgba(15, 23, 42, .075);
}

.wblcs-option-code {
    font-weight: 800;
    letter-spacing: .02em;
}


.wblcs-option-symbol {
    font-weight: 700;
}

@media (max-width: 767px) {
    .wblcs-menu {
        right: 0;
        width: min(132px, calc(100vw - 28px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .wblcs-menu,
    .wblcs-chevron {
        transition: none;
    }
}

.wblcs-option:disabled {
    opacity: .45;
    cursor: not-allowed;
}
