/* Alya Languages — frontend switcher */
.alya-lang-switcher {
  position: relative;
  display: inline-block;
  font-family: inherit;
  z-index: 99999;
}
.alya-lang-switcher--float {
  position: fixed;
  right: 18px;
  bottom: 88px;
  left: auto;
}
html[dir="rtl"] .alya-lang-switcher--float {
  right: auto;
  left: 18px;
}
.alya-lang-switcher__current {
  appearance: none;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  color: #111;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  min-width: 72px;
}
.alya-lang-switcher__caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
}
.alya-lang-switcher__list {
  position: absolute;
  bottom: calc(100% + 6px);
  right: 0;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 4px;
  min-width: 100%;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
html[dir="rtl"] .alya-lang-switcher__list {
  right: auto;
  left: 0;
}
.alya-lang-switcher__list a {
  display: block;
  padding: 8px 14px;
  color: #111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.alya-lang-switcher__list a:hover {
  background: #f3f3f3;
}
