.languageSwitcherToggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
  cursor: pointer;
  margin-right: 14px;
}
.iconLS {
  margin-right: 5px;
}
.iconLS picture span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
}
.icon-dropdown {
  border: solid;
  border-width: 0 2px 2px 0;
  display: block;
  height: 8px;
  margin: auto;
  transform: rotate(45deg) translate(-0.1em,-0.1em);
  width: 8px;
  margin-left: 5px
}
.containerLangSwitch {
  position: relative;
}
.containerLangSwitch .lang-switcher__langs {
  position: absolute;
  background: white;
  padding: 0px;
  box-sizing: border-box;
  width: 100%; 
  list-style: none; 
  display: none;
  z-index: 100;
  -webkit-box-shadow: 0 2px 4px -1px rgba(0,0,0,.5);
  box-shadow: 0 2px 4px -1px rgba(0,0,0,.5)
}
.containerLangSwitch .lang-switcher__langs li {
  display: flex;
}
.containerLangSwitch .lang-switcher__langs li:hover {
  border-left: 2px solid var(--primary-color);
  transition: .2s;
}
.containerLangSwitch .lang-switcher__langs a {
  text-decoration: none;
  color: var(--custom-b);!important;
  padding: 15px;
}

.containerLangSwitch .lang-switcher__langs a:hover {
  color: var(--primary-color) !important;
}

@media (min-width: 1024px) {
  .containerLangSwitch:hover .lang-switcher__langs {
    display: block;
  }
}
@media (max-width: 1024px) {
  .languageSwitcherToggle {
    padding:0px!important;
  }
  .moduleSwitchLanguage {
    width: auto;
    padding: 10px 0px;
  }
  .currentLanguage {
    display:none;
  }
  .containerLangSwitch {
    position: inherit;
}

ul.lang-switcher__langs {
    right: 0;
    width: fit-content!important;
    top: 72px;
}
}