.lang-selector {
  position: fixed;
  z-index: 999;
  bottom: 0;
  right: 10px;
  background-color: white;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.lang-selector .lang-selector-container {
  padding: 10px 20px;
}
.lang-selector .lang-selector-container img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.lang-selector .lang-selector-list {
  position: absolute;
  z-index: 800;
  right: 0;
  bottom: -200px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: white;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
}
.lang-selector .lang-selector-list.open {
  bottom: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.lang-selector .lang-selector-item img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.lang-selector a {
  text-decoration: none;
}

@media screen and (min-width: 1400px) {
  .lang-selector {
    right: 50px;
  }
}