.kuas-mc-switcher{
    position:relative;
    display:inline-flex;
    align-items:center;
    font-size:14px;
}

.kuas-mc-flag{
    display:inline-flex;
    width:18px;
    height:12px;
    flex:0 0 auto;
    border-radius:2px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,0.12);
    background:#fff;
}

.kuas-mc-flag svg{
    display:block;
    width:100%;
    height:100%;
}

.kuas-mc-trigger{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:transparent;
    border:1px solid rgba(255,255,255,.85);
    padding:6px 10px;
    border-radius:8px;
    cursor:pointer;
    line-height:1;
    color:#fff;
}

.kuas-mc-label{white-space:nowrap;}

.kuas-mc-caret{font-size:12px;opacity:.7;}

.kuas-mc-menu{
    position:absolute;
    top:calc(100% + 8px);
    right:0;
    min-width:180px;
    background:#fff;
    border:1px solid rgba(0,0,0,.12);
    border-radius:10px;
    box-shadow:0 8px 24px rgba(0,0,0,.12);
    padding:8px;
    display:none;
    z-index:9999;
}

.kuas-mc-menu::before{
    content:"";
    position:absolute;
    top:-8px;
    left:0;
    right:0;
    height:8px;
}

.kuas-mc-switcher.is-open .kuas-mc-menu{display:block;}

@media (hover:hover) and (pointer:fine){
    .kuas-mc-switcher:hover .kuas-mc-menu{display:block;}
}

.kuas-mc-item{
    width:100%;
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 10px;
    border-radius:8px;
    border:0;
    background:transparent;
    text-align:left;
    cursor:pointer;
}

.kuas-mc-item:hover{background:rgba(0,0,0,.05);}

.kuas-mc-item.is-active{font-weight:700;}
