.wrapper__language--select {
  position: fixed;
  /* top: 27px; */
  top: 15px;
  right: 25px;
  z-index: 999;
 }

.language-select {
  display: inline-flex;
  flex-direction: column;
  color: #fff;
  margin: 0px;
  padding: 0;
  text-transform: uppercase;
  height: 40px;
  width: 80px;
  overflow: hidden;
  cursor: pointer;
  background: #586858;
  border-radius: 6px;
}
.language-select li {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  background: #586857;
  border-radius: 6px;
  order: 2;
  padding: 8px;
  /* padding: 10px; */
  min-height: 40px;
}
.language-select li > span {
  margin-left: 7px;
}
.language-select li > a {
  text-decoration: none;
  color: #fff;
  display: flex;
}
.language-select li > a > span {
  margin-left: 7px;
  transform: translateY(-1px);
  display: inline-block;
}
.language-select li:hover {
  cursor: pointer;
  background: #687867;
  transition: 0.2s;
}

.language-select.open {
  height: auto;
}

.language-select li.active {
  order: 1;
  pointer-events: none;
}


@media (max-width: 768px) {
  .wrapper__language--select {
    /* position: fixed; */
    position: absolute;
    top: 21px;
    right: 80px;
    z-index: 9999;
}

  .language-select {
    height: 39px;
    width: 66px;
}
.language-select li {
  padding: 7px;
  min-height: 39px;
  background: #a6b1a3;
}

.language-select {
  background: #a6b1a3;

}


}
@media (max-width: 391px) {
  .language-select {
    height: 39px;
    width: 55px;
}
.language-select li > span {
  margin-left: 4px;
  font-size: 13px;
}

}