select#alg_currency_select {
    display: none!important;
}

.custom-language-switcher {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  border: 1px solid #ddd;
}
.current-language span {
    font-weight: 700;
}
.custom-language-switcher .current-language {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  padding: 5px 10px;
  background: #fff;
  border-radius: 4px;
  height: 30px;
}

.custom-language-switcher .current-language img {
  width: 16px;
  height: 12px;
  margin-right: 8px;
}

.custom-language-switcher {
    margin-top: 37px !important;
    height: 30px;
}

.custom-language-switcher .language-options {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  background: #fff;
  border-radius: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
  width: 100%;
}

.custom-language-switcher .language-options li {
    padding: 5px 5px 5px 10px;
}

.custom-language-switcher .language-options li:hover {
  background: #f0f0f0;
}

.custom-language-switcher .language-options li img {
  width: 16px;
  height: 12px;
  margin-right: 8px;
}

.custom-language-switcher.open .language-options {
  display: block;
  z-index: 10000;
}

.custom-language-switcher .language-options li.active {
  font-weight: bold;
}
.wSelect.wSelect-theme-classic {
    margin-top: 5px;
}

.wSelect-options-holder {
    left: -3px!important;
    z-index: 2000!important;

}
@media(max-width:1024px) {
    .wSelect-arrow {
        display:none;
    }
    .whb-flex-row {
        display: grid!important;
        grid-template-areas: 
            "Logo Search"
            "CurLang CurLang";
    }
    .whb-column.whb-mobile-left.whb-column_mobile2.whb-hidden-lg {
        grid-area: Logo;
    }
    .whb-column.whb-mobile-center.whb-column_mobile3.whb-hidden-lg {
        grid-area: Search;
    }
    .whb-column.whb-mobile-right.whb-column_mobile4.whb-hidden-lg {
        grid-area: CurLang;
        padding-top: 10px;
        padding-bottom: 20px;
    }
}