:root,
[data-bs-theme="light"] {
    --fsa-theme-bg: var(--fsa-theme-light-bg, #ffffff);
    --fsa-theme-surface: var(--fsa-theme-light-surface, #ffffff);
    --fsa-theme-surface-alt: var(--fsa-theme-light-surface-alt, #f4f6fb);
    --fsa-theme-text: var(--fsa-theme-light-text, #212431);
    --fsa-theme-muted: var(--fsa-theme-light-muted, #5b6478);
    --fsa-theme-border: var(--fsa-theme-light-border, rgba(23, 27, 38, 0.14));
    --fsa-theme-header: var(--fsa-theme-light-header, rgba(33, 36, 49, 0.92));
    --fsa-theme-footer-bg: var(--fsa-theme-light-footer-bg, #f4f6fb);
    --fsa-theme-footer-text: var(--fsa-theme-light-footer-text, #212431);
    --fsa-theme-footer-border: var(--fsa-theme-light-footer-border, rgba(23, 27, 38, 0.14));
    --fsa-theme-footer-accent: var(--fsa-theme-light-footer-accent, #26989a);
    --fsa-theme-accent: var(--fsa-theme-light-accent, #26989a);
    --fsa-theme-header-text: var(--fsa-theme-light-header-text, #ffffff);
    --fsa-theme-navigation-text: var(--fsa-theme-light-navigation-text, var(--fsa-theme-header-text, #ffffff));
    --fsa-theme-button-primary-text: var(--fsa-theme-light-button-primary-text, #ffffff);
}

[data-bs-theme="dark"] {
    --fsa-theme-bg: var(--fsa-theme-dark-bg, #111622);
    --fsa-theme-surface: var(--fsa-theme-dark-surface, #171c28);
    --fsa-theme-surface-alt: var(--fsa-theme-dark-surface-alt, #1c2331);
    --fsa-theme-text: var(--fsa-theme-dark-text, #e7edf8);
    --fsa-theme-muted: var(--fsa-theme-dark-muted, #b8c3da);
    --fsa-theme-border: var(--fsa-theme-dark-border, rgba(231, 237, 248, 0.2));
    --fsa-theme-header: var(--fsa-theme-dark-header, rgba(11, 16, 26, 0.96));
    --fsa-theme-footer-bg: var(--fsa-theme-dark-footer-bg, #0f1420);
    --fsa-theme-footer-text: var(--fsa-theme-dark-footer-text, #e7edf8);
    --fsa-theme-footer-border: var(--fsa-theme-dark-footer-border, #47516a);
    --fsa-theme-footer-accent: var(--fsa-theme-dark-footer-accent, #5fc3d4);
    --fsa-theme-accent: var(--fsa-theme-dark-accent, #5fc3d4);
    --fsa-theme-header-text: var(--fsa-theme-dark-header-text, var(--fsa-theme-text));
    --fsa-theme-navigation-text: var(--fsa-theme-dark-navigation-text, var(--fsa-theme-header-text, var(--fsa-theme-text)));
    --fsa-theme-button-primary-text: var(--fsa-theme-dark-button-primary-text, #ffffff);
    --fsa-separator: var(--fsa-theme-dark-border, rgba(231, 237, 248, 0.2));
    --fsa-header-bg: var(--fsa-theme-header);
}

body,
.body-bg {
    background-color: var(--fsa-theme-bg);
    color: var(--fsa-theme-text);
    --bs-body-bg: var(--fsa-theme-bg);
    --bs-body-color: var(--fsa-theme-text);
    --bs-emphasis-color: var(--fsa-theme-text);
    --bs-secondary-color: color-mix(in srgb, var(--fsa-theme-text) 72%, transparent);
    --bs-tertiary-color: color-mix(in srgb, var(--fsa-theme-text) 54%, transparent);
    --bs-heading-color: var(--fsa-theme-text);
    --bs-link-color: var(--fsa-theme-accent);
    --bs-link-hover-color: color-mix(in srgb, var(--fsa-theme-accent) 82%, #ffffff);
    --bs-secondary-bg: var(--fsa-theme-surface);
    --bs-tertiary-bg: var(--fsa-theme-surface-alt);
    --bs-border-color: var(--fsa-theme-border);
    --bs-border-color-translucent: color-mix(in srgb, var(--fsa-theme-border) 78%, transparent);
}

.frame.fsa-element-themeable {
    --fsa-element-background: var(--fsa-element-background-light);
    --fsa-element-surface: var(--fsa-element-surface-light);
    --fsa-element-overlay: var(--fsa-element-overlay-light);
    --fsa-element-headline: var(--fsa-element-headline-light);
    --fsa-element-text: var(--fsa-element-text-light);
    --fsa-element-accent: var(--fsa-element-accent-light);
    --fsa-element-border: var(--fsa-element-border-light);
    --fsa-element-button-primary-bg: var(--fsa-element-button-primary-bg-light);
    --fsa-element-button-primary-text: var(--fsa-element-button-primary-text-light);
    --fsa-element-button-secondary-bg: var(--fsa-element-button-secondary-bg-light);
    --fsa-element-button-secondary-text: var(--fsa-element-button-secondary-text-light);
}

[data-bs-theme="dark"] .frame.fsa-element-themeable {
    --fsa-element-background: var(--fsa-element-background-dark, var(--fsa-element-background-light));
    --fsa-element-surface: var(--fsa-element-surface-dark, var(--fsa-element-surface-light));
    --fsa-element-overlay: var(--fsa-element-overlay-dark, var(--fsa-element-overlay-light));
    --fsa-element-headline: var(--fsa-element-headline-dark, var(--fsa-element-headline-light));
    --fsa-element-text: var(--fsa-element-text-dark, var(--fsa-element-text-light));
    --fsa-element-accent: var(--fsa-element-accent-dark, var(--fsa-element-accent-light));
    --fsa-element-border: var(--fsa-element-border-dark, var(--fsa-element-border-light));
    --fsa-element-button-primary-bg: var(--fsa-element-button-primary-bg-dark, var(--fsa-element-button-primary-bg-light));
    --fsa-element-button-primary-text: var(--fsa-element-button-primary-text-dark, var(--fsa-element-button-primary-text-light));
    --fsa-element-button-secondary-bg: var(--fsa-element-button-secondary-bg-dark, var(--fsa-element-button-secondary-bg-light));
    --fsa-element-button-secondary-text: var(--fsa-element-button-secondary-text-dark, var(--fsa-element-button-secondary-text-light));
}

.frame.fsa-element-themeable {
    background-color: var(--fsa-element-background, transparent);
    color: var(--fsa-element-text, var(--fsa-theme-text));
    padding-top: var(--fsa-element-padding-top);
    padding-bottom: var(--fsa-element-padding-bottom);
}

.frame.fsa-element-themeable .frame-group-inner {
    background-color: inherit;
    border: 1px solid var(--fsa-element-border);
    border-radius: var(--fsa-element-radius);
}

.frame.fsa-element-themeable .frame-inner {
    max-width: var(--fsa-element-max-width);
    margin-inline: auto;
}

.frame.fsa-element-themeable,
.frame.fsa-element-themeable p,
.frame.fsa-element-themeable li,
.frame.fsa-element-themeable span,
.frame.fsa-element-themeable label,
.frame.fsa-element-themeable blockquote {
    color: var(--fsa-element-text, var(--fsa-theme-text));
}

.frame.fsa-element-themeable h1,
.frame.fsa-element-themeable h2,
.frame.fsa-element-themeable h3,
.frame.fsa-element-themeable h4,
.frame.fsa-element-themeable h5,
.frame.fsa-element-themeable h6 {
    color: var(--fsa-element-headline, var(--fsa-theme-text));
}

.frame.fsa-element-themeable a {
    color: var(--fsa-element-accent, var(--fsa-theme-accent));
}

.frame.fsa-element-themeable a:hover,
.frame.fsa-element-themeable a:focus-visible {
    color: color-mix(in srgb, var(--fsa-element-accent, var(--fsa-theme-accent)) 80%, #ffffff);
}

.frame.fsa-element-themeable .card,
.frame.fsa-element-themeable .accordion-item,
.frame.fsa-element-themeable .list-group-item,
.frame.fsa-element-themeable .table > :not(caption) > * > * {
    background-color: var(--fsa-element-surface, var(--fsa-theme-surface));
    border-color: var(--fsa-element-border, var(--fsa-theme-border));
    color: var(--fsa-element-text, var(--fsa-theme-text));
}

.frame.fsa-element-themeable .btn-primary,
.frame.fsa-element-themeable .btn.btn-primary {
    background-color: var(--fsa-element-button-primary-bg, var(--fsa-element-accent, var(--fsa-theme-accent)));
    border-color: var(--fsa-element-button-primary-bg, var(--fsa-element-accent, var(--fsa-theme-accent)));
    color: var(--fsa-element-button-primary-text, var(--fsa-theme-button-primary-text, #ffffff));
}

.frame.fsa-element-themeable .btn-secondary,
.frame.fsa-element-themeable .btn-outline-secondary,
.frame.fsa-element-themeable .btn.btn-secondary,
.frame.fsa-element-themeable .btn.btn-outline-secondary {
    background-color: var(--fsa-element-button-secondary-bg, transparent);
    border-color: var(--fsa-element-button-secondary-text, var(--fsa-element-accent, var(--fsa-theme-accent)));
    color: var(--fsa-element-button-secondary-text, var(--fsa-element-accent, var(--fsa-theme-accent)));
}

.frame.fsa-element-themeable .gallery-item figure,
.frame.fsa-element-themeable .textmedia-gallery figure,
.frame.fsa-element-themeable figure.video,
.frame.fsa-element-themeable .embed,
.frame.fsa-element-themeable .embed-responsive,
.frame.fsa-element-themeable .audio-list-item,
.frame.fsa-element-themeable .filelink-item,
.frame.fsa-element-themeable blockquote,
.frame.fsa-element-themeable .tab-content,
.frame.fsa-element-themeable .alert {
    background-color: var(--fsa-element-surface, var(--fsa-theme-surface));
    border: 1px solid var(--fsa-element-border, var(--fsa-theme-border));
    border-radius: calc(var(--fsa-element-radius, 0px) + 0.75rem);
}

.frame.fsa-element-themeable .gallery-item figure,
.frame.fsa-element-themeable .textmedia-gallery figure,
.frame.fsa-element-themeable figure.video,
.frame.fsa-element-themeable .audio-list-item,
.frame.fsa-element-themeable .filelink-item,
.frame.fsa-element-themeable blockquote,
.frame.fsa-element-themeable .tab-content,
.frame.fsa-element-themeable .alert {
    padding: clamp(0.85rem, 1.8vw, 1.15rem);
}

.frame.fsa-element-themeable .embed,
.frame.fsa-element-themeable .embed-responsive,
.frame.fsa-element-themeable .table-responsive {
    overflow: hidden;
}

.frame.fsa-element-themeable .embed > iframe,
.frame.fsa-element-themeable .embed-responsive > iframe,
.frame.fsa-element-themeable .embed > .fsa-embed,
.frame.fsa-element-themeable .embed-responsive > .fsa-embed {
    display: block;
    width: 100%;
}

.frame.fsa-element-themeable .embed-responsive > .fsa-embed {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    border-radius: inherit;
}

.frame.fsa-element-themeable .embed-responsive > .fsa-embed iframe {
    min-height: 100%;
    height: 100%;
    border-radius: 0;
}

.frame.fsa-element-themeable .caption,
.frame.fsa-element-themeable figcaption,
.frame.fsa-element-themeable .filelink-filesize,
.frame.fsa-element-themeable .filelink-filedescription,
.frame.fsa-element-themeable .audio-list-item p,
.frame.fsa-element-themeable .alert p:last-child,
.frame.fsa-element-themeable blockquote footer {
    color: var(--fsa-theme-muted);
}

.frame.fsa-element-themeable .gallery-item img,
.frame.fsa-element-themeable .textmedia-gallery img,
.frame.fsa-element-themeable figure.video iframe {
    border-radius: calc(var(--fsa-element-radius, 0px) + 0.45rem);
}

.frame.fsa-element-themeable .audio-heading,
.frame.fsa-element-themeable .filelink-heading a,
.frame.fsa-element-themeable .tab-pane-content-text h1,
.frame.fsa-element-themeable .tab-pane-content-text h2,
.frame.fsa-element-themeable .tab-pane-content-text h3,
.frame.fsa-element-themeable .tab-pane-content-text h4,
.frame.fsa-element-themeable .accordion-content-text h1,
.frame.fsa-element-themeable .accordion-content-text h2,
.frame.fsa-element-themeable .accordion-content-text h3,
.frame.fsa-element-themeable .accordion-content-text h4 {
    color: var(--fsa-element-headline, var(--fsa-theme-text));
}

.frame.fsa-element-themeable .filelink-list,
.frame.fsa-element-themeable .audio-list {
    display: grid;
    gap: 1rem;
    padding-left: 0;
}

.frame.fsa-element-themeable .filelink-item {
    align-items: flex-start;
    gap: 1rem;
}

.frame.fsa-element-themeable .filelink-media,
.frame.fsa-element-themeable .filelink-fileicon {
    color: var(--fsa-element-accent, var(--fsa-theme-accent));
}

.frame.fsa-element-themeable .filelink-heading a {
    text-decoration: none;
}

.frame.fsa-element-themeable .nav-tabs {
    gap: 0.45rem;
    border-bottom-color: var(--fsa-element-border, var(--fsa-theme-border));
}

.frame.fsa-element-themeable .nav-tabs .nav-link {
    background-color: color-mix(in srgb, var(--fsa-element-surface, var(--fsa-theme-surface)) 82%, transparent);
    border: 1px solid var(--fsa-element-border, var(--fsa-theme-border));
    color: var(--fsa-element-text, var(--fsa-theme-text));
}

.frame.fsa-element-themeable .nav-tabs .nav-link:hover,
.frame.fsa-element-themeable .nav-tabs .nav-link:focus-visible,
.frame.fsa-element-themeable .nav-tabs .nav-link.active {
    background-color: var(--fsa-element-surface, var(--fsa-theme-surface));
    border-color: color-mix(in srgb, var(--fsa-element-accent, var(--fsa-theme-accent)) 38%, var(--fsa-element-border, var(--fsa-theme-border)));
    color: var(--fsa-element-headline, var(--fsa-theme-text));
}

.frame.fsa-element-themeable .tab-content {
    margin-top: -1px;
}

.frame.fsa-element-themeable .accordion-item {
    overflow: hidden;
}

.frame.fsa-element-themeable .accordion-button {
    background-color: var(--fsa-element-surface, var(--fsa-theme-surface));
    color: var(--fsa-element-text, var(--fsa-theme-text));
    box-shadow: none;
}

.frame.fsa-element-themeable .accordion-button:not(.collapsed) {
    background-color: color-mix(in srgb, var(--fsa-element-surface, var(--fsa-theme-surface)) 72%, var(--fsa-theme-surface-alt));
    color: var(--fsa-element-headline, var(--fsa-theme-text));
}

.frame.fsa-element-themeable .accordion-body {
    background-color: color-mix(in srgb, var(--fsa-element-surface, var(--fsa-theme-surface)) 74%, var(--fsa-theme-surface-alt));
}

.frame.fsa-element-themeable .table-responsive {
    border: 1px solid var(--fsa-element-border, var(--fsa-theme-border));
    border-radius: calc(var(--fsa-element-radius, 0px) + 0.75rem);
}

.frame.fsa-element-themeable .table {
    margin-bottom: 0;
}

.frame.fsa-element-themeable .table thead th {
    background-color: color-mix(in srgb, var(--fsa-element-surface, var(--fsa-theme-surface)) 70%, var(--fsa-theme-surface-alt));
    color: var(--fsa-element-headline, var(--fsa-theme-text));
    border-bottom-color: var(--fsa-element-border, var(--fsa-theme-border));
}

.frame.fsa-element-themeable .table caption {
    padding-inline: 0.25rem;
    color: var(--fsa-theme-muted);
}

.frame.fsa-element-themeable blockquote {
    margin-bottom: 0;
    border-left-color: var(--fsa-element-accent, var(--fsa-theme-accent));
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.frame.fsa-element-themeable .alert {
    color: var(--fsa-element-text, var(--fsa-theme-text));
}

.frame.fsa-element-themeable .list-group-item.active {
    background-color: color-mix(in srgb, var(--fsa-element-accent, var(--fsa-theme-accent)) 18%, var(--fsa-element-surface, var(--fsa-theme-surface)));
    border-color: color-mix(in srgb, var(--fsa-element-accent, var(--fsa-theme-accent)) 42%, var(--fsa-element-border, var(--fsa-theme-border)));
    color: var(--fsa-element-text, var(--fsa-theme-text));
}

.frame.fsa-element-themeable .card-group-element .card,
.frame.fsa-element-themeable .card-menu .card,
.frame.fsa-element-themeable .card-panel,
.frame.fsa-element-themeable .card-panel .card-header {
    box-shadow: none;
}

#page-footer {
    background: var(--fsa-theme-footer-bg, var(--fsa-theme-light-footer-bg, #212431)) !important;
    background-image: none !important;
    color: var(--fsa-theme-footer-text, var(--fsa-theme-light-footer-text, #ffffff)) !important;
    padding: 0 !important;
}

#page-header {
    --fsa-header-bg: var(--fsa-theme-header);
    --bs-navbar-color: color-mix(in srgb, var(--fsa-theme-navigation-text) 82%, transparent);
    --bs-navbar-hover-color: var(--fsa-theme-accent);
    --bs-navbar-active-color: var(--fsa-theme-accent);
    --bs-navbar-brand-color: var(--fsa-theme-navigation-text);
    --bs-navbar-brand-hover-color: var(--fsa-theme-navigation-text);
    --bs-navbar-toggler-border-color: color-mix(in srgb, var(--fsa-theme-navigation-text) 32%, transparent);
}

#page-header .navigation-main .nav-link,
#page-header .navigation-main .nav-link-main {
    color: var(--fsa-theme-navigation-text);
    background: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

#page-header .navigation-main .nav-link .nav-link-text {
    color: inherit;
    background: transparent !important;
    text-decoration: none !important;
}

#page-header .navigation-main .nav-link:hover,
#page-header .navigation-main .nav-link:focus-visible,
#page-header .navigation-main .nav-link.active,
#page-header .navigation-main .nav-link[aria-current="true"] {
    color: var(--fsa-theme-accent);
}

[data-bs-theme="dark"] #page-header {
    background-image: linear-gradient(180deg, rgba(23, 28, 40, 0.98) 0%, rgba(11, 16, 26, 0.92) 100%);
}

[data-bs-theme="dark"] #page-header .navigation-search-form {
    border-color: rgba(231, 237, 248, 0.4) !important;
    background-color: rgba(231, 237, 248, 0.08) !important;
}

[data-bs-theme="dark"] #page-header .navigation-search-input {
    color: var(--fsa-theme-text) !important;
}

[data-bs-theme="dark"] #page-header .navigation-search-input::placeholder {
    color: var(--fsa-theme-muted) !important;
}

#page-header .btn-outline-light {
    color: var(--fsa-theme-navigation-text);
    border-color: color-mix(in srgb, var(--fsa-theme-navigation-text) 55%, transparent);
    background: color-mix(in srgb, var(--fsa-theme-navigation-text) 8%, transparent);
}

#page-header .btn-outline-light:hover,
#page-header .btn-outline-light:focus-visible {
    color: var(--fsa-theme-navigation-text);
    border-color: color-mix(in srgb, var(--fsa-theme-navigation-text) 78%, transparent);
    background: color-mix(in srgb, var(--fsa-theme-navigation-text) 16%, transparent);
}

#page-header .navigation-quicktools {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
}

#page-header .navigation-quicktools .navigation-quicktool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 999px;
    line-height: 1;
}

#page-header .navigation-quicktools .navigation-quicktool__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
}

#page-header .navigation-quicktools .fsa-consent-trigger {
    color: var(--fsa-theme-navigation-text);
    border-color: color-mix(in srgb, var(--fsa-theme-navigation-text) 55%, transparent);
    background: color-mix(in srgb, var(--fsa-theme-navigation-text) 10%, transparent);
}

#page-header .navigation-quicktools .fsa-consent-trigger:hover,
#page-header .navigation-quicktools .fsa-consent-trigger:focus-visible {
    color: var(--fsa-theme-navigation-text);
    border-color: color-mix(in srgb, var(--fsa-theme-navigation-text) 78%, transparent);
    background: color-mix(in srgb, var(--fsa-theme-navigation-text) 18%, transparent);
}

#page-footer .fsa-footer {
    --fsa-footer-bg: var(--fsa-theme-footer-bg) !important;
    --fsa-footer-text: var(--fsa-theme-footer-text) !important;
    --fsa-footer-border: var(--fsa-theme-footer-border) !important;
    --fsa-footer-accent: var(--fsa-theme-footer-accent) !important;
    background: var(--fsa-footer-bg) !important;
    background-image: none !important;
    color: var(--fsa-footer-text) !important;
    border-top-color: var(--fsa-footer-border) !important;
}

#page-footer .fsa-footer,
#page-footer .fsa-footer .fsa-footer__description,
#page-footer .fsa-footer .fsa-footer__heading h4,
#page-footer .fsa-footer .fsa-footer__bottom,
#page-footer .fsa-footer .fsa-footer__tagline,
#page-footer .fsa-footer p,
#page-footer .fsa-footer li,
#page-footer .fsa-footer span,
#page-footer .fsa-footer strong,
#page-footer .fsa-footer a,
#page-footer .fsa-footer .fsa-footer__links a,
#page-footer .fsa-footer .fsa-footer__sublinks a,
#page-footer .fsa-footer__links--root a {
    color: var(--fsa-theme-footer-text, var(--fsa-footer-text)) !important;
}

#page-footer .fsa-footer .fsa-footer__links a::before,
#page-footer .fsa-footer .fsa-footer__sublinks a::before {
    color: color-mix(in srgb, var(--fsa-theme-footer-text, var(--fsa-footer-text)) 70%, transparent) !important;
}

#page-footer .fsa-footer .fsa-footer__row,
#page-footer .fsa-footer .fsa-footer__divider,
#page-footer .fsa-footer .fsa-footer__col:not(:last-child) {
    border-color: var(--fsa-footer-border) !important;
}

#page-footer .fsa-footer a:hover,
#page-footer .fsa-footer a:focus-visible {
    color: var(--fsa-footer-accent) !important;
}

#page-footer .fsa-footer .btn-outline-light,
#page-footer .btn-outline-light {
    color: var(--fsa-theme-footer-text, var(--fsa-footer-text)) !important;
    border-color: color-mix(in srgb, var(--fsa-theme-footer-text, var(--fsa-footer-text)) 44%, transparent) !important;
    background: color-mix(in srgb, var(--fsa-theme-footer-text, var(--fsa-footer-text)) 8%, transparent) !important;
}

#page-footer .fsa-footer .btn-outline-light:hover,
#page-footer .fsa-footer .btn-outline-light:focus-visible,
#page-footer .btn-outline-light:hover,
#page-footer .btn-outline-light:focus-visible {
    color: var(--fsa-theme-footer-text, var(--fsa-footer-text)) !important;
    border-color: color-mix(in srgb, var(--fsa-theme-footer-text, var(--fsa-footer-text)) 70%, transparent) !important;
    background: color-mix(in srgb, var(--fsa-theme-footer-text, var(--fsa-footer-text)) 16%, transparent) !important;
}

#page-header .navigation-language .btn-language {
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

#page-header .navigation-language .btn-language .language-flag__badge {
    color: var(--fsa-theme-navigation-text);
    background: color-mix(in srgb, var(--fsa-theme-navigation-text) 10%, transparent);
    border-color: color-mix(in srgb, var(--fsa-theme-navigation-text) 55%, transparent);
}

#page-header .navigation-language {
    position: relative;
}

#page-header .navigation-language .dropdown-menu {
    z-index: 1200;
}

#page-header .navigation-language .dropdown:hover > .dropdown-menu,
#page-header .navigation-language .dropdown:focus-within > .dropdown-menu,
#page-header .navigation-language .dropdown-menu.show {
    display: block;
}

.language-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    min-height: 24px;
}

.language-flag__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.language-flag__icon .icon,
.language-flag__icon .icon-markup {
    display: block;
    line-height: 0;
}

.language-flag__icon img,
.language-flag__icon svg {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    object-fit: cover;
}

#page-header .navigation-language .btn-language {
    color: var(--fsa-theme-navigation-text) !important;
    border-color: color-mix(in srgb, var(--fsa-theme-navigation-text) 55%, transparent) !important;
    background: color-mix(in srgb, var(--fsa-theme-navigation-text) 8%, transparent) !important;
}

#page-header .navigation-language .btn-language:hover,
#page-header .navigation-language .btn-language:focus-visible {
    color: var(--fsa-theme-navigation-text) !important;
    border-color: color-mix(in srgb, var(--fsa-theme-navigation-text) 78%, transparent) !important;
    background: color-mix(in srgb, var(--fsa-theme-navigation-text) 16%, transparent) !important;
}

[data-bs-theme="light"] #page-header .navigation-language .dropdown-menu {
    background: var(--fsa-theme-light-surface, #ffffff) !important;
    border-color: var(--fsa-theme-light-border, rgba(23, 27, 38, 0.16)) !important;
}

.language-flag__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 0.45rem;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

[data-bs-theme="light"] #page-header .navigation-language .dropdown-item {
    color: var(--fsa-theme-light-text, #212431) !important;
}

[data-bs-theme="light"] #page-header .navigation-language .dropdown-item .language-label {
    color: inherit;
}

[data-bs-theme="light"] #page-header .navigation-language .dropdown-item:hover,
[data-bs-theme="light"] #page-header .navigation-language .dropdown-item:focus-visible {
    background: color-mix(in srgb, var(--fsa-theme-light-accent, var(--fsa-theme-accent)) 26%, var(--fsa-theme-light-surface, #ffffff)) !important;
    color: var(--fsa-theme-light-text, #212431) !important;
}

[data-bs-theme="light"] #page-header .navigation-language .dropdown-item.active {
    background: color-mix(in srgb, var(--fsa-theme-light-accent, var(--fsa-theme-accent)) 42%, var(--fsa-theme-light-surface, #ffffff)) !important;
    color: var(--fsa-theme-light-text, #212431) !important;
}

[data-bs-theme="dark"] #page-header .navigation-language .dropdown-menu {
    background: var(--fsa-theme-surface) !important;
    border-color: var(--fsa-theme-border) !important;
}

[data-bs-theme="dark"] #page-header .navigation-language .dropdown-item {
    color: var(--fsa-theme-text) !important;
}

[data-bs-theme="dark"] #page-header .navigation-language .dropdown-item .language-label {
    color: inherit;
}

[data-bs-theme="dark"] #page-header .navigation-language .dropdown-item:hover,
[data-bs-theme="dark"] #page-header .navigation-language .dropdown-item:focus-visible {
    background: color-mix(in srgb, var(--fsa-theme-accent) 26%, var(--fsa-theme-surface)) !important;
    color: var(--fsa-theme-text) !important;
}

[data-bs-theme="dark"] #page-header .navigation-language .dropdown-item.active {
    background: color-mix(in srgb, var(--fsa-theme-accent) 42%, var(--fsa-theme-surface)) !important;
    color: var(--fsa-theme-text) !important;
}

.fsa-subpage-header {
    background: color-mix(in srgb, var(--fsa-theme-bg) 82%, transparent);
}

.fsa-subpage-header__title,
.fsa-subpage-header__subtitle {
    color: var(--fsa-theme-text);
}

.fsa-highlight {
    --fsa-highlight-bg: var(--fsa-highlight-bg-light, var(--fsa-highlight-bg-default, var(--fsa-element-background, var(--fsa-theme-surface))));
    --fsa-highlight-headline: var(--fsa-highlight-headline-light, var(--fsa-highlight-headline-default, var(--fsa-element-headline, var(--fsa-theme-text))));
    --fsa-highlight-text: var(--fsa-highlight-text-light, var(--fsa-highlight-text-default, var(--fsa-element-text, var(--fsa-theme-text))));
    --fsa-highlight-underline: var(--fsa-highlight-underline-light, var(--fsa-highlight-underline-default, var(--fsa-element-accent, var(--fsa-theme-accent))));
}

[data-bs-theme="dark"] .fsa-highlight {
    --fsa-highlight-bg: var(--fsa-highlight-bg-dark, var(--fsa-highlight-bg-light, var(--fsa-highlight-bg-default, var(--fsa-element-background, var(--fsa-theme-surface)))));
    --fsa-highlight-headline: var(--fsa-highlight-headline-dark, var(--fsa-highlight-headline-light, var(--fsa-highlight-headline-default, var(--fsa-element-headline, var(--fsa-theme-text)))));
    --fsa-highlight-text: var(--fsa-highlight-text-dark, var(--fsa-highlight-text-light, var(--fsa-highlight-text-default, var(--fsa-element-text, var(--fsa-theme-text)))));
    --fsa-highlight-underline: var(--fsa-highlight-underline-dark, var(--fsa-highlight-underline-light, var(--fsa-highlight-underline-default, var(--fsa-element-accent, var(--fsa-theme-accent)))));
}

.fsa-highlight--h2 {
    --fsa-highlight-headline-default: var(--fsa-theme-accent);
    --fsa-highlight-text-default: var(--fsa-theme-text);
    --fsa-highlight-underline-default: var(--fsa-theme-accent);
}

.fsa-highlight--h2 .fsa-highlight__subheadline,
.fsa-highlight--h2 .fsa-highlight__text,
.fsa-highlight--h2 .fsa-highlight__text p,
.fsa-highlight--h2 .fsa-highlight__text li {
    color: var(--fsa-highlight-text);
}

.fsa-highlight--h2 .fsa-highlight__text li:before {
    color: var(--fsa-highlight-headline);
}

.fsa-legacy-content .frame-container {
    max-width: var(--fsa-content-max-width, 1200px);
    margin-left: auto;
    margin-right: auto;
}

.fsa-legacy-content--html .fsa-legacy-content__body,
.fsa-legacy-content--text .fsa-legacy-content__body {
    max-width: min(100%, 78ch);
}

.fsa-feature-grid {
    color: var(--fsa-theme-text);
    background-color: var(--fsa-element-background, color-mix(in srgb, var(--fsa-theme-surface-alt, #f4f6fb) 84%, var(--fsa-theme-surface, #ffffff) 16%));
}

.fsa-feature-grid:before {
    background: var(--fsa-element-overlay, color-mix(in srgb, var(--fsa-theme-surface-alt, #f4f6fb) 72%, transparent));
}

.fsa-feature-grid__intro {
    color: var(--fsa-theme-muted);
}

.fsa-feature-grid__card {
    background: var(--fsa-theme-surface);
    border-color: var(--fsa-theme-border);
    text-decoration: none;
}

.fsa-feature-grid__card p {
    color: var(--fsa-theme-text);
}

.fsa-feature-grid__card--link {
    cursor: pointer;
}

.fsa-feature-grid__card:focus-visible {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--fsa-theme-accent, #26989a) 28%, transparent), 0 14px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--fsa-element-accent, var(--fsa-theme-accent, #26989a));
    outline: none;
}

.fsa-feature-grid__cta .btn-teal,
.fsa-hero .btn-teal {
    background-color: var(--fsa-element-button-primary-bg, var(--fsa-theme-accent));
    border-color: var(--fsa-element-button-primary-bg, var(--fsa-theme-accent));
    color: var(--fsa-element-button-primary-text, var(--fsa-theme-button-primary-text, #ffffff));
}

.fsa-feature-grid__cta .btn-teal:hover,
.fsa-feature-grid__cta .btn-teal:focus-visible,
.fsa-hero .btn-teal:hover,
.fsa-hero .btn-teal:focus-visible {
    background-color: color-mix(in srgb, var(--fsa-element-button-primary-bg, var(--fsa-theme-accent)) 82%, #ffffff);
    border-color: color-mix(in srgb, var(--fsa-element-button-primary-bg, var(--fsa-theme-accent)) 82%, #ffffff);
    color: var(--fsa-element-button-primary-text, var(--fsa-theme-button-primary-text, #ffffff));
}

.fsa-timeline {
    color: var(--fsa-theme-text);
}

.fsa-timeline h1,
.fsa-timeline h2,
.fsa-timeline h3,
.fsa-timeline h4,
.fsa-timeline h5,
.fsa-timeline h6 {
    color: var(--fsa-theme-text);
}

.fsa-timeline p,
.fsa-timeline .timeline .timeline-body > ul,
.fsa-timeline .timeline .timeline-body > p,
.fsa-timeline h3.section-subheading {
    color: var(--fsa-theme-muted);
}

.frame.fsa-element-themeable.frame-type-timeline .timeline {
    --timeline-item-border: 1px solid var(--fsa-element-border, var(--fsa-theme-border));
    --timeline-item-border-radius: calc(var(--fsa-element-radius, 0px) + 0.75rem);
    --timeline-item-shadow: 0 14px 32px color-mix(in srgb, #000000 12%, transparent);
    --timeline-item-headline-color: var(--fsa-element-headline, var(--fsa-theme-text));
    --timeline-item-color: var(--fsa-element-text, var(--fsa-theme-text));
    --timeline-item-bg: var(--fsa-element-surface, var(--fsa-theme-surface));
    --timeline-item-caption-color: var(--fsa-theme-muted);
    --timeline-item-caption-bg: color-mix(in srgb, var(--fsa-element-surface, var(--fsa-theme-surface)) 76%, var(--fsa-theme-surface-alt));
    --timeline-icon-color: var(--fsa-element-accent, var(--fsa-theme-accent));
    --timeline-icon-bg: var(--fsa-element-surface, var(--fsa-theme-surface));
    --timeline-icon-border: 3px solid var(--fsa-element-border, var(--fsa-theme-border));
    --timeline-icon-border-opacity: 1;
    --timeline-marker-bg: var(--fsa-element-surface, var(--fsa-theme-surface));
    --timeline-marker-border: 3px solid var(--fsa-element-border, var(--fsa-theme-border));
    --timeline-marker-border-opacity: 1;
    --timeline-path-border: 2px dashed var(--fsa-element-border, var(--fsa-theme-border));
    --timeline-path-opacity: 1;
}

.frame.fsa-element-themeable.frame-type-timeline .timeline-item-inner {
    color: var(--timeline-item-color);
}

.frame.fsa-element-themeable.frame-type-timeline .timeline-item-header-headline {
    color: var(--timeline-item-headline-color);
}

.frame.fsa-element-themeable.frame-type-timeline .timeline-item-date,
.frame.fsa-element-themeable.frame-type-timeline .timeline-item-text,
.frame.fsa-element-themeable.frame-type-timeline .timeline-item-text p,
.frame.fsa-element-themeable.frame-type-timeline .timeline-item-text li {
    color: var(--timeline-item-color);
}

.frame.fsa-element-themeable.frame-type-timeline .timeline-item-image .caption {
    color: var(--timeline-item-caption-color);
    background-color: var(--timeline-item-caption-bg);
}

.fsa-search-panel {
    background: var(--fsa-theme-surface) !important;
    border: 1px solid var(--fsa-theme-border) !important;
    color: var(--fsa-theme-text) !important;
}

.fsa-search-panel__eyebrow,
.fsa-search-panel__subtitle,
.fsa-search-panel__label {
    color: var(--fsa-theme-muted) !important;
    opacity: 1 !important;
}

.fsa-search-panel__body {
    background: var(--fsa-theme-surface-alt) !important;
    border: 1px solid var(--fsa-theme-border) !important;
}

.fsa-search-form__field {
    background: var(--fsa-theme-surface) !important;
    border-color: var(--fsa-theme-border) !important;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--fsa-theme-border) 40%, transparent) !important;
}

.fsa-search-form__icon {
    color: var(--fsa-theme-accent) !important;
    background: color-mix(in srgb, var(--fsa-theme-accent) 12%, transparent) !important;
}

.fsa-search-form__input {
    color: var(--fsa-theme-text) !important;
}

.fsa-search-form__input::placeholder {
    color: var(--fsa-theme-muted) !important;
}

.section.section-default,
.section-default {
    background: var(--fsa-theme-surface);
    color: var(--fsa-theme-text);
}

.fsa-search-form__select,
.fsa-search-form__group select,
.fsa-search-form__group input[type='checkbox'] {
    background: var(--fsa-theme-surface-alt) !important;
    border: 1px solid var(--fsa-theme-border) !important;
    color: var(--fsa-theme-text) !important;
}

.fsa-search-form__toggle {
    color: var(--fsa-theme-text) !important;
    border-color: var(--fsa-theme-border) !important;
    background: color-mix(in srgb, var(--fsa-theme-surface) 85%, transparent) !important;
}

.fsa-search-form__toggle:hover,
.fsa-search-form__toggle:focus-visible,
.fsa-search-form.has-advanced-open .fsa-search-form__toggle {
    color: var(--fsa-theme-accent) !important;
    border-color: var(--fsa-theme-accent) !important;
    background: color-mix(in srgb, var(--fsa-theme-accent) 14%, transparent) !important;
}

.fsa-search-form__advanced {
    background: var(--fsa-theme-surface) !important;
    border-color: var(--fsa-theme-border) !important;
}

.fsa-search-form__group label,
.fsa-search-form__checkbox-label,
.fsa-search-form__meta {
    color: var(--fsa-theme-muted) !important;
}

.fsa-search-form__link,
.fsa-search-result__score,
.fsa-search-results__summary {
    color: var(--fsa-theme-accent) !important;
}

[data-bs-theme="dark"] .fsa-search-form__submit {
    box-shadow: none !important;
}

a {
    color: var(--fsa-theme-accent);
}

a:hover,
a:focus-visible {
    color: color-mix(in srgb, var(--fsa-theme-accent) 80%, #ffffff);
}

[data-bs-theme="dark"] .fsa-logo-slider {
    background: var(--fsa-theme-surface);
}

[data-bs-theme="dark"] .fsa-logo-slider__slide img {
    filter: grayscale(0.08) brightness(0.92) contrast(1.05);
}

.fsa-search-results {
    background: var(--fsa-theme-surface) !important;
    border: 1px solid var(--fsa-theme-border) !important;
    color: var(--fsa-theme-text) !important;
}

.fsa-search-results__label,
.fsa-search-results__section-count {
    color: var(--fsa-theme-muted) !important;
}

.fsa-search-results__section {
    border-bottom-color: var(--fsa-theme-border) !important;
}

.fsa-search-result {
    background: var(--fsa-theme-surface-alt) !important;
    border-color: var(--fsa-theme-border) !important;
    color: var(--fsa-theme-text) !important;
    box-shadow: none !important;
}

.fsa-search-result__title a,
.fsa-search-result__snippet strong,
.fsa-search-result__meta .value {
    color: var(--fsa-theme-text) !important;
}

.fsa-search-result__snippet,
.fsa-search-result__meta {
    color: var(--fsa-theme-muted) !important;
}

.fsa-search-result__children {
    border-left-color: var(--fsa-theme-border) !important;
}

.fsa-search-results__empty {
    background: color-mix(in srgb, var(--fsa-theme-accent) 20%, transparent) !important;
    color: var(--fsa-theme-text) !important;
}

[data-bs-theme="dark"] .card,
[data-bs-theme="dark"] .accordion-item,
[data-bs-theme="dark"] .list-group-item,
[data-bs-theme="dark"] .dropdown-menu,
[data-bs-theme="dark"] .modal-content {
    background-color: var(--fsa-theme-surface);
    color: var(--fsa-theme-text);
    border-color: var(--fsa-theme-border);
}

[data-bs-theme="dark"] .accordion-button {
    background-color: var(--fsa-theme-surface);
    color: var(--fsa-theme-text);
}

[data-bs-theme="dark"] .accordion-button:not(.collapsed) {
    background-color: var(--fsa-theme-surface-alt);
    color: var(--fsa-theme-text);
}

[data-bs-theme="dark"] .table {
    color: var(--fsa-theme-text);
}

[data-bs-theme="dark"] .table > :not(caption) > * > * {
    border-bottom-color: var(--fsa-theme-border);
    background-color: transparent;
}

[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
    background-color: var(--fsa-theme-surface-alt);
    color: var(--fsa-theme-text);
    border-color: var(--fsa-theme-border);
}

[data-bs-theme="dark"] .form-control::placeholder {
    color: var(--fsa-theme-muted);
}

.frame.fsa-element-themeable.frame-type-felogin_login form {
    margin-top: 1.25rem;
}

.frame.fsa-element-themeable.frame-type-felogin_login fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    display: grid;
    gap: 1rem;
}

.frame.fsa-element-themeable.frame-type-felogin_login legend {
    margin: 0;
    padding: 0;
    color: var(--fsa-element-headline, var(--fsa-theme-text));
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
}

.frame.fsa-element-themeable.frame-type-felogin_login fieldset > div {
    display: grid;
    gap: 0.45rem;
}

.frame.fsa-element-themeable.frame-type-felogin_login label {
    color: var(--fsa-element-text, var(--fsa-theme-text));
    font-weight: 600;
}

.frame.fsa-element-themeable.frame-type-felogin_login input[type="text"],
.frame.fsa-element-themeable.frame-type-felogin_login input[type="password"],
.frame.fsa-element-themeable.frame-type-felogin_login input[type="email"] {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--fsa-element-border, var(--fsa-theme-border));
    border-radius: 0.75rem;
    background: color-mix(in srgb, var(--fsa-element-surface, var(--fsa-theme-surface)) 92%, transparent);
    color: var(--fsa-element-text, var(--fsa-theme-text));
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--fsa-element-surface, var(--fsa-theme-surface)) 80%, transparent);
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.frame.fsa-element-themeable.frame-type-felogin_login input[type="text"]::placeholder,
.frame.fsa-element-themeable.frame-type-felogin_login input[type="password"]::placeholder,
.frame.fsa-element-themeable.frame-type-felogin_login input[type="email"]::placeholder {
    color: var(--fsa-theme-muted);
}

.frame.fsa-element-themeable.frame-type-felogin_login input[type="text"]:focus,
.frame.fsa-element-themeable.frame-type-felogin_login input[type="password"]:focus,
.frame.fsa-element-themeable.frame-type-felogin_login input[type="email"]:focus {
    outline: none;
    border-color: color-mix(in srgb, var(--fsa-element-accent, var(--fsa-theme-accent)) 65%, var(--fsa-element-border, var(--fsa-theme-border)));
    background: var(--fsa-element-surface, var(--fsa-theme-surface));
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--fsa-element-accent, var(--fsa-theme-accent)) 18%, transparent);
}

.frame.fsa-element-themeable.frame-type-felogin_login input[type="submit"] {
    appearance: none;
    justify-self: start;
    min-height: 2.9rem;
    padding: 0.7rem 1.15rem;
    border: 1px solid var(--fsa-element-button-primary-bg, var(--fsa-element-accent, var(--fsa-theme-accent)));
    border-radius: 0.75rem;
    background: var(--fsa-element-button-primary-bg, var(--fsa-element-accent, var(--fsa-theme-accent)));
    color: var(--fsa-element-button-primary-text, var(--fsa-theme-button-primary-text, #ffffff));
    font-weight: 700;
    line-height: 1;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.frame.fsa-element-themeable.frame-type-felogin_login input[type="submit"]:hover,
.frame.fsa-element-themeable.frame-type-felogin_login input[type="submit"]:focus-visible {
    outline: none;
    border-color: color-mix(in srgb, var(--fsa-element-button-primary-bg, var(--fsa-element-accent, var(--fsa-theme-accent))) 88%, var(--fsa-element-surface, var(--fsa-theme-surface)));
    background: color-mix(in srgb, var(--fsa-element-button-primary-bg, var(--fsa-element-accent, var(--fsa-theme-accent))) 88%, var(--fsa-element-surface, var(--fsa-theme-surface)));
    color: var(--fsa-element-button-primary-text, var(--fsa-theme-button-primary-text, #ffffff));
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--fsa-element-accent, var(--fsa-theme-accent)) 18%, transparent);
}

[data-bs-theme="dark"] .pagination .page-link {
    background-color: var(--fsa-theme-surface);
    border-color: var(--fsa-theme-border);
    color: var(--fsa-theme-text);
}

[data-bs-theme="dark"] .pagination .page-link:hover,
[data-bs-theme="dark"] .pagination .page-link:focus-visible,
[data-bs-theme="dark"] .pagination .active > .page-link {
    background-color: color-mix(in srgb, var(--fsa-theme-accent) 24%, var(--fsa-theme-surface));
    border-color: color-mix(in srgb, var(--fsa-theme-accent) 45%, var(--fsa-theme-border));
    color: var(--fsa-theme-text);
}
