/*
Theme Name: Impax Theme
*/
.language {
  position: relative;
}
.language-selected {
  cursor: pointer;
}
.language-list {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  background: #fff;
  padding: 6px;
  border-radius: 24px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 100000;
  display: none;
}
.language-list-item {
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 24px;
  margin-bottom: 6px;
  display: block;
  font-size: 12px;
}
.language-list-item:hover {
  background-color: #f5f5f5;
}
.language-list-item a {
  display: block;
  font-size: 16px;
}
.language-list-item.is-current a {
  font-weight: 600;
}
.language-list.active {
  display: block;
}
