/* innerexile language switch */

.ix-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 18px;
  padding: 4px;
  border-radius: 9999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.ix-lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 9999px;
  color: rgba(255,255,255,.72) !important;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.12px;
  text-decoration: none;
}

.ix-lang-switch a:hover {
  color: #fff !important;
  background: rgba(255,255,255,.12);
}

.ix-lang-switch a.is-active {
  background: #fff;
  color: #1d1d1f !important;
}

@media (max-width: 760px) {
  .ix-lang-switch {
    margin-left: 8px;
    gap: 3px;
  }

  .ix-lang-switch a {
    padding: 0 8px;
    font-size: 11px;
  }
}
