.wpml-ls-legacy-list-vertical {
    width: 100%;
    border: none;
}
.wpml-ls-current-language a, .wpml-ls-legacy-list-vertical a:hover {
    color: #bb0307;
}
.wpml-ls-legacy-list-vertical a span {
    padding-left: 5px;
}
.page_header_lang {
    display: flex;
    align-items: center;
    position: relative;
}
.page_header_lang > picture {
    display: flex;
}
.page_header_lang #btn_lang_popup {
    display: flex;
    color: #526373;
    align-items: center;
    gap: 5px;
    padding-left: 5px;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
}
.page_header_lang_popup {
    display: none;
    min-width: 230px;
    max-height: 210px;
    overflow-y: scroll;
    background: #fff;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, 0);
    box-shadow: 0 0 24px rgba(48,59,69,.2);
    border-radius: 5px;
    padding: 5px;
    z-index: 99;
}
.page_header_lang_popup::-webkit-scrollbar {
    width: .3em;
    border-radius: 10px;
}
.page_header_lang_popup::-webkit-scrollbar-thumb {
    background-color: #bb0307;
    outline: none;
}
.page_header_lang:after {
    content: '';
    display: block;
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    bottom: -34px;
    left: 50%;
    border: 0.5em solid;
    border-color: transparent transparent #fff #fff;
    transform: rotate(135deg);
    margin-left: -10px;
    z-index: 99;
}
.page_header_lang.active:after {
    opacity: 1;
}
@media (max-width: 767px) {
	.page_header_lang_popup {
		left: unset;
		right: 0;
		transform: none;
	}
}