.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(0, 0, 0, .11);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.language-switcher a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 6px;
  color: #6b6b70;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: #111214;
  background: #ececef;
  outline: none;
}

.language-switcher a.is-active {
  color: #fff;
  background: #111214;
}

@media (max-width: 600px) {
  .site-header .nav {
    height: auto;
    min-height: 58px;
    flex-wrap: wrap;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .site-header .language-switcher {
    margin-left: auto;
  }

  .language-switcher a {
    width: 31px;
    height: 31px;
    font-size: 12px;
  }
}
