.switch-lang {
  cursor: pointer;
  position: relative;
  display: inline-block;
  border: 1px solid #e0e0e0;
  padding: 3px 37px 3px 8px;
  border-radius: 30px;
}
.switch-lang .current-lang {
  display: flex;
  align-items: center;
}
.switch-lang .current-lang .lang-flag {
  width: 35px;
}
.switch-lang .current-lang .lang-text {
  font-size: 17px;
  line-height: 24px;
  color: #202b5d;
  font-weight: 400;
  margin: 0;
  padding-left: 10px;
  position: relative;
}
.switch-lang .current-lang .lang-text:after {
  content: "3";
  font-family: "ElegantIcons";
  position: absolute;
  right: -23px;
  top: 0;
  font-size: 20px;
}
.switch-lang .lang-dropdown {
  display: none;
  padding-top: 6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  left: 10px;
  right: 0;
  min-height: 100px;
  z-index: 99999;
  background: #fff;
  box-shadow: 10px 0 40px rgba(6, 22, 58, 0.1);
  padding: 8px 10px;
}
.switch-lang .lang-dropdown .selecting-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 0;
}
.switch-lang .lang-dropdown .selecting-lang:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}
.switch-lang .lang-dropdown .selecting-lang .lang-flag {
  width: 35px;
}
.switch-lang .lang-dropdown .selecting-lang .lang-text {
  font-size: 16px;
  line-height: 24px;
  color: #62718d;
  font-weight: 400;
  margin: 0;
}
.switch-lang:hover {
  border-color: transparent !important;
}
.switch-lang:hover .lang-dropdown {
  display: block;
}