/* OEP Bilingual v0.2 */
.oep-tabs{
    display:flex;
    align-items:center;
    gap:10px;
    margin:0 0 20px;
}
.oep-tabs button{
    background:#fff;
    border:1px solid #d8d8d8;
    border-radius:6px;
    padding:8px 16px;
    cursor:pointer;
    font-size:18px;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.2s;
}
.oep-tabs button:hover{
    background:#f7f7f7;
}
.oep-tabs button.active{
    border-color:#888;
    box-shadow:0 0 0 2px rgba(0,0,0,.05);
}
.oep-tabs button + button::before{
    content:"|";
    color:#999;
    margin-right:10px;
}
