.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  float: left;
  margin-top: 18px;
  margin-left: 16px;
}

.lang-switcher-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1;
  padding: 5px 5px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.lang-switcher-btn:hover,
.lang-switcher-btn:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  outline: none;
}

.lang-switcher-btn.is-active {
  background: #fff;
  border-color: #fff;
  color: #1a1a1a;
}

@media screen and (max-width: 991px) {
  .lang-switcher {
    margin-left: 12px;
    margin-top: 16px;
  }

  .lang-switcher-btn {
    font-size: 11px;
    padding: 4px 7px;
  }
}
