.pllswitch {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.pllswitch__toggle {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 4px;
    font-size: 18px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
    background: transparent;
    /*background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);*/
    color: #fff;
    flex-shrink: 0;
    cursor: pointer;
    /*width: 66px;*/
    height: 34px;
    /*border-radius: 9999px;*/
}

.pllswitch__toggle:hover {
    color: #1BEDB6;
}

.pllswitch__toggle:hover svg path {
    stroke: #1BEDB6;
}

.pllswitch__toggle[aria-expanded=true] {
    color: #1BEDB6;
}

.pllswitch__toggle[aria-expanded=true] svg path {
    stroke: #1BEDB6;
}

.pllswitch__toggle span {
    display: inline-block;
    text-transform: uppercase;
    width: 24px;
    text-align: center;
}

.pllswitch__icon {
    display: flex !important;
}

.pllswitch__toggle {
    line-height: 1;
}

.pllswitch__chev {
    transition: transform .2s ease;
}

.pllswitch__toggle[aria-expanded="true"] .pllswitch__chev {
    transform: rotate(180deg);
}

.pllswitch__menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    min-width: 122px;
    background: #0A0A0A;
    border: 1px solid #123B30;
    border-radius: 12px;
    padding: 10px 24px;
    display: none;
    flex-direction: column;
    gap: .25rem;
    z-index: 9999;
    text-transform: capitalize;
}

.pllswitch__toggle[aria-expanded="true"]+.pllswitch__menu {
    display: flex;
}

.pllswitch__item {
    position: relative;
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 0px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
    color: #fff;
}

.pllswitch__item:hover {
    color: #1BEDB6;
}

.pllswitch__item.is-active {
    color: #1BEDB6;
    pointer-events: none;
}

.pllswitch__item.is-active:before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #1BEDB6;
    border-radius: 50%;
}

.pllswitch__item img {
    flex-shrink: 0;
}