.lang-picker{
  position:relative;
  display:inline-flex;
  align-items:center;
}
.lang-btn{
  width:40px;
  height:40px;
  border-radius:999px;
  border:none;
  background:transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  cursor:pointer;
}
.lang-btn:hover,
.lang-btn:focus-visible{
  outline:none;
}
.lang-flag{
  width:22px;
  height:16px;
  display:block;
  border-radius:3px;
  box-shadow:0 0 0 1px rgba(0,0,0,.25);
}
.lang-menu{
  position:absolute;
  left:0;
  bottom:calc(100% + 8px);
  min-width:150px;
  padding:6px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:var(--chrome-bg-strong);
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  z-index:100003;
}
.lang-menu[data-open="down"]{
  top:calc(100% + 8px);
  bottom:auto;
}
.lang-item{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  padding:10px 12px;
  border-radius:10px;
  text-decoration:none;
  color:inherit;
  white-space:nowrap;
}
.lang-item:hover,
.lang-item:focus-visible{
  background:rgba(255,255,255,.06);
  outline:none;
}
.lang-label{
  font-weight:700;
  font-size:13px;
  opacity:.95;
}
.lang-switch-fixed{
  position:fixed;
  top:14px;
  left:14px;
  right:auto;
  z-index:5;
}
