.language-switcher {
    position: relative;
    padding-top: 3px;
    text-transform: uppercase;
    cursor: pointer;
}
.language-switcher .selected-lang {
    display: flex;
    align-items: center;
    column-gap: 6px;
}
.language-switcher .lang-switcher-icon {
    width: 6px;
    height: 4px;
    background: url(../../../../img/icons/header/lang-switcher-icon.svg) no-repeat;
}
.language-switcher .selected-lang:hover,
.language-switcher ul li:hover {
    color: var(--blue-brand-color);
}
.language-switcher:hover .lang-switcher-icon {
    background: url(../../../../img/icons/header/lang-switcher-icon-blue.svg) no-repeat;
}

.language-switcher ul {
    padding: 0 20px;
    left: -20px;
    display: none;
    position: absolute;
    list-style: none;
    background-color: var(--white);
    border-radius: 5px;
    z-index: 1;
}
.language-switcher ul li {
    margin-top: 15px;
}
.language-switcher ul li:last-child {
    margin-bottom: 10px;
}
.language-switcher:hover ul {
    display: block;
}