body {
    font-family: 'Poppins', sans-serif !important;
}

/*Accessibility*/
#reading-mask-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    display: none;
}

/* Sichtbar machen bei aktivierter Klasse */
html.reading-mask #reading-mask-layer {
    display: block;
}

/* Fokusbereich, der der Maus folgt */
#reading-focus {
    position: absolute;
    width: 100vw;
    height: 200px;
    pointer-events: none;
    background: transparent;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.6); /* alles abdunkeln außer Fokus */
}

html.high-contrast, html.high-contrast body {
    background-color: #000 !important;
    color: #FFD700 !important;
}

html.high-contrast a {
    color: #00FFFF !important;
    text-decoration: underline !important;
}

html.high-contrast * {
    background-color: transparent !important;
    border-color: #FFD700 !important;
    color: #FFD700 !important;
}

html.high-contrast .btn {
    background-color: #000 !important;
    color: #FFD700 !important;
    border: 2px solid #FFD700 !important;
}

html.high-contrast .dropdown-menu-item > .d-flex {
    background-color: #000 !important;
    color: #FFD700 !important;
    border: 2px solid #FFD700 !important;
}

html.high-contrast .dropdown-menu-item h2,
html.high-contrast .dropdown-menu-item .nav-text-description {
    color: #FFD700 !important;
}

html.high-contrast .dropdown-menu-item img {
    filter: brightness(0.5);
}

/* Hintergrund für Dropdown-Menüs */
html.high-contrast .dropdown-menu {
    background-color: #000 !important;
    border: 2px solid #FFD700 !important;
}

/* Einzelne Dropdown-Einträge */
html.high-contrast .dropdown-item {
    background-color: #000 !important;
    color: #FFD700 !important;
}

/* Hover-Farbe bei Mausbewegung */
html.high-contrast .dropdown-item:hover,
html.high-contrast .dropdown-item:focus {
    background-color: #222 !important;
    color: #FFD700 !important;
}

html.high-contrast #a11y-menu .form-check-input {
    background-color: #000 !important;
    border: 2px solid #FFD700 !important;
    outline: none !important;
}

html.high-contrast #a11y-menu .form-check-input:checked {
    background-color: #FFD700 !important;
    border-color: #FFD700 !important;
}

html.high-contrast #a11y-menu,
html.high-contrast #a11y-menu .row,
html.high-contrast #a11y-menu .card,
html.high-contrast #a11y-menu .card-body {
    background-color: #000 !important;
}


html.readable-font,
html.readable-font body,
html.readable-font * {
    font-family: Arial, sans-serif !important;
}

html.readable-font i,
html.readable-font [class*="fa-"],
html.readable-font .fas,
html.readable-font .fa,
html.readable-font .bi {
    font-family: "Font Awesome 6 Free" !important;
}

.hide-images img {
    visibility: hidden !important;
}

html.a11y-lineheight-14 {
    line-height: 1.4;
}

html.a11y-lineheight-15 {
    line-height: 1.5;
}

html.a11y-lineheight-16 {
    line-height: 1.6;
}

html.a11y-lineheight-17 {
    line-height: 1.7;
}

html.a11y-lineheight-18 {
    line-height: 1.8;
}

html.a11y-lineheight-19 {
    line-height: 1.9;
}

html.a11y-lineheight-20 {
    line-height: 2.0;
}


#a11y-menu,
#a11y-menu * {
    font-size: 14px !important;
}

#a11y-widget {
    position: fixed;
    z-index: 99999 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
}

.footer-column a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: all 0.3s ease-in-out;
}

.footer-column a:hover {
    color: #1171bf;
    transform: translateX(5px);
}

.social-icons a:hover {
    background: #f4b400;
    transform: scale(1.1);
}

.list-sty {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    background: #fff;
}

.list-sty, .list-group-item {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    overflow-x: hidden;
}

/* Extra Small (xs) - unter 576px */
@media (max-width: 575px) {

}

/* Small (sm) - 576px bis 767px */
@media (min-width: 576px) and (max-width: 767px) {
    #btn-back-to-top {
        right: 1rem !important;
    }
}

@media (max-width: 768px) {
    #a11y-widget {
        bottom: 1rem !important;
        right: 5.5rem !important;
        display: none !important;
    }
}

/* Medium (md) - 768px bis 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .origin-top {
        margin-top: 6rem !important;
    }
}

/* Large (lg) - 992px bis 1199px */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* Extra Large (xl) - 1200px bis 1399px */
@media (min-width: 1200px) and (max-width: 1399px) {

}

/* Extra Extra Large (xxl) - ab 1400px */
@media (min-width: 1400px) {

}