.language-switcher {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 10px;
}
.language-switcher button {
    margin: 0 5px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
}
#goog-gt-tt,
.skiptranslate {
    display: none !important;
}
.lang-picker-wrap {
    position: relative;
    z-index: 1;
    font-family: Arial, sans-serif;
    max-width: 300px;
}
.lang-picker-wrap__select {
    padding: 0 20px 0 0;
    font-size: 0.75rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    text-transform: uppercase;
    cursor: pointer;
    color: #222;
}
.lang-picker-wrap__select:after {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    content: '\f107';
    font-family: 'Font Awesome 6 Pro';
    font-size: 0.8rem;
    margin-left: 4px;
    color: #222;
}
.lang-picker-wrap__select:before {
    content: '';
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    width: 34px;
    height: 20px;
    margin: 0 8px 0 0;
}
.lang-picker-wrap__select.nl:before {
    background-image: url('/site/media/images/flags/languages/nl_NL.svg');
    background-color: #ddd;
}
.lang-picker-wrap__select.fr:before {
    background-image: url('/site/media/images/flags/languages/fr_FR.svg');
    background-color: #ddd;
}
.lang-picker-wrap__select.en:before {
    background-image: url('/site/media/images/flags/languages/en_GB.svg');
    background-color: #ddd;
}
.lang-picker {
    display: none;
    position: absolute;
    z-index: 2;
    top: 35px;
    right: 0;
    flex-direction: column;
    width: 220px;
    background: #ffffff;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.36);
    padding: 1rem;
}
.lang-picker.active {
    display: flex;
}
.lang-picker__option {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 8px;
    cursor: pointer;
}

.lang-picker__option:hover {
    background-color: #f5f5f5;
}
.lang-picker__option:before {
    content: '';
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    width: 34px;
    height: 20px;
    margin: 0 8px 0 0;
}
.lang-picker__option.nl:before {
    background-image: url('/site/media/images/flags/languages/nl_NL.svg');
    background-color: #ddd;
}
.lang-picker__option.fr:before {
    background-image: url('/site/media/images/flags/languages/fr_FR.svg');
    background-color: #ddd;
}
.lang-picker__option.en:before {
    background-image: url('/site/media/images/flags/languages/en_GB.svg');
    background-color: #ddd;
}