/* Language switcher added for the Ukrainian/Russian site versions. */
.language-switcher {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(18, 62, 43, 0.94);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  font: 700 12px/1.2 Arial, Helvetica, sans-serif;
}
.language-switcher a,
.language-switcher span {
  display: block;
  min-width: 34px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.language-switcher a:hover,
.language-switcher a:focus {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}
.language-switcher .is-active {
  background: #fff;
  color: #174d37;
}
@media (max-width: 640px) {
  .language-switcher {
    top: 8px;
    right: 8px;
  }
  .language-switcher a,
  .language-switcher span {
    min-width: 31px;
    padding: 6px 7px;
  }
}
