.jfc_hintergrund {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(to right, #2F83AF 0%, #FAF0B8 70%);
    /*background-image: radial-gradient(at top left, #2F83AF 0%, #FAF0B8 70%); */
    @media (prefers-color-scheme: dark) {
        background-image: linear-gradient(to right, #2F83AF 0%, #867827 70%);
    }
}

.jfc_hintergrund_2 {
    background-color: white;
    @media (prefers-color-scheme: dark) {
        background-color: black;
    }
}

.jfc_hintergrund_box {
    background-image: radial-gradient(at top left, #2F83AF 0%, #FAF0B8 70%);
    @media (prefers-color-scheme: dark) {
        background-image: radial-gradient(at top left, #2F83AF 0%, #867827 70%);
    }
}

.jfc_hintergrund_weiss {
    background-color: white;
    @media (prefers-color-scheme: dark) {
        background-color: black;
    }
}

.jfc_kopf {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.jfc_transparent {
    /*background-color: rgba(220, 220, 220, 0.9); */
    background-color: rgba(225, 225, 225, 0.9); 
    @media (prefers-color-scheme: dark) {
        background-color: rgba(43, 42, 42, 0.9); 
    }
}

.jfc_titel {
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /*font-size: 60px;*/
    font-size: clamp(1.875em, 2.8vw, 3.75em);
    color: black;
    padding-top: 10px;
    margin-bottom: 25px;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_box_haupt {
    width: 100%;
    min-height: 700px;
}

.jfc_box_1 {
    width: 100%;
    /* min-height: 100px; */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.jfc_box_2 {
    width: 100%;
    /* min-height: 100px; */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.jfc_box_3 {
    width: 100%;
    min-height: 300px;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.jfc_box_4 {
    width: 100%;
    min-height: 250px;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.jfc_box_5 {
    width: 100%;
    min-height: 200px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.jfc_box_6 {
    width: 100%;
    min-height: 100px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.jfc_box_7 {
    width: 100%;
    min-height: 200px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.jfc_box_8 {
    width: 100%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.jfc_box_login {
    width: 100%;
    min-height: 600px;
    background-color: rgb(242, 252, 231);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        background-color: #2b2a2a;
    }
}

.jfc_box_content {
    width: 100%;
    min-height: 85vh;
    background-color: rgb(242, 252, 231);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        background-color: #2b2a2a;
    }
}

.jfc_schriftfarbe {
    color: black;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_schriftfarbe_weiss {
    color: white;
}

.jfc_schriftfarbe_rot {
    color: #E40C01;
}

.jfc_txt_logo {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 26px; */ /* min: 18px */
    font-size: clamp(1.125em, 2.8vw, 1.625em);
    font-weight: bold;
}

.jfc_txt_menu {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; */ /* min: 10px */
    font-size: clamp(0.5em, 2.8vw, 1em);
}

.jfc_txt_h1 {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 36px; */ /* min: 26px */
    font-size: clamp(1.625em, 2.8vw, 2.25em);
    font-weight: bold;
}

.jfc_txt_h2 {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 20px; */ /* min: 12px */
    font-size: clamp(0.75em, 2.8vw, 1.25em);
}

.jfc_txt_h3 {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 26px; */ /* min: 18px */
    font-size: clamp(1.125em, 2.8vw, 1.625em);
    font-weight: bold;
}

.jfc_txt_h4 {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 18px; */ /* min: 10px */
    font-size: clamp(0.75em, 2.8vw, 1.125em);
    font-weight: bold;
}

.jfc_txt_h5 {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 36px; */ /* min: 26px */
    font-size: clamp(1.25em, 2.8vw, 1.75em);
    font-weight: bold;
}

.jfc_txt_h6 {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 14px; */
    font-size: clamp(0.375em, 2.8vw, 0.875em);
    font-weight: bold;
}

.jfc_txt_h7 {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 26px; */ /* min: 18px */
    font-size: clamp(1em, 2.8vw, 1.5em);
    font-weight: bold;
}

.jfc_txt_1 {
    width: 100%;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 18px; */ /* min: 10px */
    font-size: clamp(0.75em, 2.8vw, 1.125em);
}

.jfc_txt_2 {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; */
    font-size: clamp(0.75em, 2.8vw, 1em);
}

.jfc_txt_3 {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 14px; */
    font-size: clamp(0.375em, 2.8vw, 0.875em);
}

.jfc_txt_4 {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 12px; */
    font-size: clamp(0.25em, 2.8vw, 0.74em);
}

.jfc_txt_5 {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 18px; */ /* min: 10px */
    font-size: clamp(0.75em, 2.8vw, 1.125em);
}

.jfc_txt_6 {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; */
    font-size: clamp(0.5em, 2.8vw, 1em);
    font-weight: bold;
}

.jfc_txt_7 {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 10px; */
    font-size: clamp(0.375em, 2.8vw, 0.625em);
}

.jfc_txt_8 {
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 18px; */ /* min: 10px */
    font-size: clamp(0.75em, 2.8vw, 1.125em);
    font-weight: bold;
}

.jfc_text_fett {
    font-weight: bold;
}

.jfc_h1 {
    display : none;
}

.jfc_h3 {
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 20px; */ /* min: 16px */
    font-size: clamp(1em, 2.8vw, 1.25em);
    font-weight: bold;
    color: black;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_h4 {
    text-align: left;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; */ /* min: 14px */
    font-size: clamp(0.875em, 2.8vw, 1em);
    font-weight: bold;
    color: black;
    padding-left: 10px;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_btn_1 {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; */ /* min: 8px */
    font-size: clamp(0.5em, 2.8vw, 1em);
    font-weight: bold;
    color: black;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_btn_2 {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 14px; */
    font-size: clamp(0.375em, 2.8vw, 0.875em);
    font-weight: bold;
    color: black;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_btn_4 {
    min-width: 150px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 14px; */
    font-size: clamp(0.375em, 2.8vw, 0.875em);
    font-weight: bold;
    color: black;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 10px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_btn_haupt {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; */ /* min: 8px */
    font-size: clamp(0.5em, 2.8vw, 1em);
    font-weight: bold;
    color: black;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_btn_abbrechen {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; */ /* min: 8px */
    font-size: clamp(0.5em, 2.8vw, 1em);
    font-weight: bold;
    color: black;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_btn_senden {
    width: 150px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; */ /* min: 8px */
    font-size: clamp(0.5em, 2.8vw, 1em);
    font-weight: bold;
    color: black;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_btn_anmelden_1 {
    width: 300px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; */ /* min: 8px */
    font-size: clamp(0.5em, 2.8vw, 1em);
    font-weight: bold;
    color: black;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_btn_zu_home {
    width: 450px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; */ /* min: 8px */
    font-size: clamp(0.5em, 2.8vw, 1em);
    font-weight: bold;
    color: black;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_btn_web_1 {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; */ /* min: 8px */
    font-size: clamp(0.5em, 2.8vw, 1em);
    font-weight: bold;
    color: black;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_btn_web_loeschen {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; */ /* min: 8px */
    font-size: clamp(0.5em, 2.8vw, 1em);
    font-weight: bold;
    color: white;
    background-color: #FF0000;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #FF0000;
    }
}

.jfc_btn_auswahl {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 12px; */
    font-size: clamp(0.25em, 2.8vw, 0.74em);
    font-weight: bold;
    color: black;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 10px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_btn_abo {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    @media (prefers-color-scheme: dark) {
        background-color: #23A336;
    }
}

.jfc_btn_reg_weiter {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    @media (prefers-color-scheme: dark) {
        background-color: #23A336;
    }
}

.jfc_btn_widerruf {
    width: 150px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    @media (prefers-color-scheme: dark) {
        background-color: #23A336;
    }
}

.jfc_btn_anmelden_banner {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: black;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_linie_1 {
    border: 1px solid black;
    @media (prefers-color-scheme: dark) {
        border: 1px solid white;
    }
}

.jfc_farbe_gruen {
    background-color: rgb(242, 252, 231);
    @media (prefers-color-scheme: dark) {
        background-color: rgb(100, 140, 121);
    }
}

.jfc_farbe_grau {
    background-color: rgb(220, 220, 220);
    @media (prefers-color-scheme: dark) {
        background-color: rgb(43, 42, 42);
    }
}

.jfc_farbe_blau {
    background-color: rgb(184, 227, 250);
    @media (prefers-color-scheme: dark) {
        background-color: rgb(81, 101, 156);
    }
}

.jfc_farbe_hell_gelb {
    background-color: rgb(250, 240, 184);
    @media (prefers-color-scheme: dark) {
        background-color: rgb(134, 120, 39);
    }
}

.jfc_farbe_dunkel_gruen {
    background-color: rgb(35, 163, 54);
    @media (prefers-color-scheme: dark) {
        background-color: rgb(100, 140, 121);
    }
}

.jfc_farbe_orange {
    background-color: #f4cb5d;
    @media (prefers-color-scheme: dark) {
        background-color: #8C7120;
    }
}

.jfc_farbe_oeffentlich {
    background-color: rgb(250, 240, 184);
    @media (prefers-color-scheme: dark) {
        background-color: #867827;
    }
}

.jfc_fuss {
    width: 100%;
    height: 150px;
    /* background-color: rgb(3, 53, 10); */
    background-color: #2b2a2a;
}

.jfc_schriftfarbe_fuss {
    color: white;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_unterstichen {
    text-decoration: underline;
}

.jfc_position_links {
    text-align: left;
}

.jfc_position_links_2 {
    text-align: left;
}

.jfc_position_rechts {
    text-align: right;
}

.jfc_position_mittig {
    text-align: center;
}

.jfc_abstand_oben_2 {
    margin-top: 2px;
}

.jfc_abstand_oben_5 {
    margin-top: 5px;
}

.jfc_abstand_oben_7 {
    margin-top: 7px;
}

.jfc_abstand_oben_10 {
    margin-top: 10px;
}

.jfc_abstand_oben_15 {
    margin-top: 15px;
}

.jfc_abstand_oben_20 {
    margin-top: 20px;
}

.jfc_abstand_oben_25 {
    margin-top: 25px;
}

.jfc_abstand_oben_35 {
    margin-top: 35px;
}

.jfc_abstand_oben_50 {
    margin-top: 50px;
}

.jfc_abstand_oben_75 {
    margin-top: 75px;
}

.jfc_abstand_oben_100 {
    margin-top: 100px;
}

.jfc_abstand_p_oben_10 {
    padding-top: 10px;
}

.jfc_abstand_p_oben_15 {
    padding-top: 15px;
}

.jfc_abstand_p_unten_15 {
    padding-bottom: 15px;
}

.jfc_abstand_links_2 {
    margin-left: 2px;
}

.jfc_abstand_links_5 {
    margin-left: 5px;
}

.jfc_abstand_links_10 {
    margin-left: 10px;
}

.jfc_abstand_links_20 {
    margin-left: 20px;
}

.jfc_abstand_links_20_2 {
    margin-left: 20px;
}

.jfc_abstand_links_30 {
    margin-left: 30px;
}

.jfc_abstand_links_40 {
    margin-left: 40px;
}

.jfc_abstand_links_50 {
    margin-left: 50px;
}

.jfc_abstand_links_60 {
    margin-left: 60px;
}

.jfc_abstand_rechts_3 {
    margin-right: 3px;
}

.jfc_abstand_rechts_10 {
    margin-right: 10px;
}

.jfc_abstand_rechts_20 {
    margin-right: 20px;
}

.jfc_abstand_p_links_20 {
    padding-left: 20px;
}

.jfc_abstand_p_rechts_15 {
    padding-right: 15px;
}

.jfc_abstand_p_rechts_20 {
    padding-right: 20px;
}

.jfc_abstand_unten_5 {
    margin-bottom: 5px;
}

.jfc_abstand_unten_10 {
    margin-bottom: 10px;
}

.jfc_abstand_unten_15 {
    margin-bottom: 15px;
}

.jfc_abstand_unten_25 {
    margin-bottom: 25px;
}

.jfc_abstand_unten_50 {
    margin-bottom: 50px;
}

.jfc_abstand_unten_75 {
    margin-bottom: 75px;
}

.jfc_abstand_unten_100 {
    margin-bottom: 75px;
}

.jfc_links_1 {
    width: 100%;
    display: flex;
    margin-top: 7px;
    margin-bottom: 25px;
}

.jfc_links_2 {
    width: 100%;
    display: flex;
}

.jfc_links_3 {
    width: 100%;
    display: flex;
    margin-top: 15px;
    margin-bottom: 25px;
}

a:link {
    text-decoration: none;
  }
  
a:visited {
    text-decoration: none;
}
  
a:hover {
    text-decoration: underline;
    color: black;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}
  
a:active {
    text-decoration: underline;
}

a {
    color: black;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

input[type=checkbox] {
    margin-right: 10px;
    line-height: normal;
    width: 20px;
    height: 20px;
}

.jfc_formular_box {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}

.jfc_hp {
    display: none;
}

.jfc_breite_1 {
    width: 100%;
}

p {
    padding: 25px;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; */
    font-size: clamp(0.5em, 2.8vw, 1em);
    color: black;
    text-align: center;
    background-color: rgba(225, 225, 225, 0.9); 
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: rgba(43, 42, 42, 0.9); 
    }
}

details {
    max-width: 60ch;
    
    &[open] summary::after {
      rotate: -180deg;
    }
    
    summary {
        /* Override default "display: list-item" and position the summary text as well as the custom arrow icon */
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
      
        /* General styling */
        cursor: pointer;
        margin-block-end: 8px;
        padding: 15px;
        font-family: 'Didact Gothic', sans-serif;
        font-weight: bold;
        /* font-size: 16px; */
        font-size: clamp(0.5em, 2.8vw, 1em);
        color: black;
        @media (prefers-color-scheme: dark) {
            color: white;
        }
        text-decoration: underline;
      
        /* Fallback code to hide standard marker, especially on Safari */
        &::marker,
        &::-webkit-details-marker {
            display: none;
        }
        
        &::after {
            /* CSS for chevron shape from https://css-shape.com/chevron/ */
            --shape-chevron-width: 1rem;
            --s: calc(var(--shape-chevron-width) / 4);
    
            /* Styling */
            content: "";
            aspect-ratio: 7/5;
            background: currentColor;
            clip-path: polygon(0 0, 0 var(--s), 50% 100%, 100% var(--s), 100% 0, 50% calc(100% - var(--s)));
            flex-shrink: 0;
            width: var(--shape-chevron-width);
            
            /* Animation */
            rotate: 0deg;
            transition: rotate 0.35s ease;
        }
    }
}

.jfc_app_icon {
    width: 220px;
    height: 220px;
    object-fit: contain;        
}

.jfc_apple_store_icon {
    width: 150px;
    height: 50px;
    object-fit: contain;  
}

.jfc_google_play_icon {
    width: 150px;
    height: 50px;
    object-fit: contain; 
}

.jfc_apple_store_icon_2 {
    width: 210px;
    height: 70px;
    object-fit: contain;  
}

.jfc_google_play_icon_2 {
    width: 210px;
    height: 70px;
    object-fit: contain; 
}

.jfc_warum_icons {
    width: 50px;
    height: 50px;
    object-fit: contain; 
    /* Hellmodus: schwarz */
    filter: invert(0);
    @media (prefers-color-scheme: dark) {
        /* Dunkelmodus: weiß */
        filter: invert(1);
    }
}

.jfc_profilbild_icon {
    width: 40px;
    height: 40px;
    object-fit: contain;        
}

.jfc_profilbild_icon_2 {
    width: 200px;
    height: 200px;
    object-fit: contain;        
}

.jfc_profilbild_icon_3 {
    width: 30px;
    height: 30px;
    object-fit: contain;        
}

.jfc_profilbild_icon_oprofil {
    width: 70px;
    height: 70px;
    object-fit: contain;        
}

.jfc_verifizierung_icon {
    width: 14px;
    height: 14px;
    object-fit: contain;        
}

.jfc_verifizierung_icon_2 {
    width: 18px;
    height: 18px;
    object-fit: contain;        
}

.jfc_reaktion_icon {
    width: 24px;
    height: 24px;
    object-fit: contain;        
}

.jfc_menu_index_web{
    display: block;
}

.jfc_menu_index_app {
    display: block;
}

.jfc_menu_index_faq {
    display: block;
}

.jfc_menu_index_sprache {
    display: block;
}

.jfc_scrollox_1 {
    overflow-y:  scroll;
    height: 300px;
}

.jofor_btn_tags_1 {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 12px; min: 6px */
    font-size: clamp(0.375em, 2.8vw, 0.75em);
    font-weight: bold;
    color: black;
    background-color: #f4cb5d;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 5px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    margin-right: 0px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #8C7120;
    }
}

.jfc_post_1 {
    padding-top: 0px;
    padding-bottom: 0px;
}

.jfc_profil_info_1 {
    width: 100%;
    display: flex;
}

.jfc_namen_1 {
    padding-top: 5px;
    padding-left: 10px;
}

.jfc_chat_namen {
    width: 70%;
    padding-top: 5px;
    padding-left: 10px;
}

.jfc_post_name_1 {
    text-align: left;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; min: 10px */
    font-size: clamp(0.75em, 2.8vw, 1em);
    font-weight: bold;
    color: black;
    padding-left: 10px;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_id_2 {
    text-align: left;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 10px; min: 6px */
    font-size: clamp(0.25em, 2.8vw, 0.625em);
    color: black;
    padding-left: 10px;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_id_3 {
    text-align: left;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 10px; min: 6px */
    font-size: clamp(0.375em, 2.8vw, 0.625em);
    color: black;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_post_t2 {
    text-align: left;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 18px; min: 14px */
    font-size: clamp(1em, 2.8vw, 1.125em);
    color: black;
    padding-left: 75px;
    padding-top: 15px;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_post_t3 {
    text-align: left;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 18px; min: 14px */
    font-size: clamp(0.875em, 2.8vw, 1.125em);
    color: black;
    padding-left: 25px;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_posturl2 {
    text-align: left;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 16px; min: 10px */
    font-size: clamp(0.625em, 2.8vw, 1em);
    color: black;
    margin-top: 15px;
    padding-left: 75px;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_icon_2 {
    padding-top: 10px;
    @media (prefers-color-scheme: dark) {
        filter: invert(100%) grayscale(100%);
    }
}

.jfc_mehr_1 {
    text-align: center;
    width: 400px;
    /* font-size: 16px; min: 10px */
    font-size: clamp(0.625em, 2.8vw, 1em);
    padding-top: 25px;
    padding-bottom: 50px;
}

.jfc_post_zahl {
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 12px; min: 6px */
    font-size: clamp(0.375em, 2.8vw, 0.75em);
    color: black;
    padding-top: 5px;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_anzahl_reaktionen {
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 12px; min: 6px */
    font-size: clamp(0.375em, 2.8vw, 0.75em);
    color: black;
    padding-top: 5px;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_icon_verifiziert {
    filter: invert(71%) sepia(63%) saturate(499%) hue-rotate(72deg) brightness(90%) contrast(91%);
    @media (prefers-color-scheme: dark) {
        filter: invert(67%) sepia(36%) saturate(370%) hue-rotate(47deg) brightness(95%) contrast(85%);
    }
}

.jfc_tags_1 {
    width: 100%;
    display: flex;
    padding-top: 25px;
    padding-left: 70px;
    margin-top: 25px;
}

.jfc_dropdown_1 {
    width: 100%;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.jfc_strength_bar {
    height: 4px;
    background: #7a7a90;
    border-radius: 99px;
    margin-bottom: 10px;
    overflow: hidden;
}

.jfc_strength_fill {
    height: 100%;
    width: 0%;
    border-radius: 99px;
    transition: width .35s ease, background .35s ease;
}

.jfc_pw_anforderungen {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .35rem .5rem;
    margin-bottom: 1.5rem;
}

.jfc_anforderung {
    /* font-size: 12px; min: 6px */
    font-size: clamp(0.375em, 2.8vw, 0.75em);
    color: black;
    text-align: left;
    display: flex;
    align-items: left;
    gap: .4rem;
    transition: color .25s;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_anforderung::before {
    content: '○';
    font-size: 11px;
    color: black;
    transition: color .25s, content .25s;
    flex-shrink: 0;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_anforderung.met {
    color: #23A336;
}

.jfc_anforderung.met::before {
    content: '●';
    color: #23A336;
}

.jfc_btn_anmelden_1:disabled {
    opacity: .25;
    cursor: not-allowed;
}

.jfc_input_wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.jfc_input_wrapper input {
    padding-right: 2.8rem; /* Platz für das Icon */
}

.jfc_toggle_pw {
    position: absolute;
    right: .85rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: black;
    display: flex;
    align-items: center;
    transition: color .2s;
    flex-shrink: 0;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_toggle_pw:hover { 
    color: black; 
}

.jfc_toggle_pw svg { 
    width: 18px; 
    height: 18px; 
    display: block; 
}

.jfc_schriftfarbe_dropdown {
    color: black;
}

.jfc_btn_anmelden_1:disabled {
    opacity: .25;
    cursor: not-allowed;
}

.jfc_profilbild_header {
    text-align: left;
    filter: grayscale(100%);
    @media (prefers-color-scheme: dark) {
        filter: invert(100%) grayscale(100%);
    } 
}

.jfc_einstellung_header {
    text-align: right;
    filter: grayscale(100%);
    @media (prefers-color-scheme: dark) {
        filter: invert(100%) grayscale(100%);
    } 
}

.jfc_profilbild_header_icon {
    width: 36px;
    height: 36px;
    object-fit: contain; 
}

.jfc_einstellung_header_icon {
    width: 36px;
    height: 36px;
    object-fit: contain; 
}

.jfc_privat_tab {
    width: 50%;
    height: 40px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    color: black;
    padding-top: 5px;
    @media (prefers-color-scheme: dark) {
        color:white;
    }
}

.jfc_privat_tab.active {
    width: 50%;
    height: 40px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    font-weight: bold;
    color: black;
    padding-top: 5px;
    background-color: #B8E3FA;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        background-color: #2F83AF;
        color:white;
    }
}

.jfc_privat_tab_2 {
    width: 100%;
    height: 40px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    font-weight: bold;
    color: black;
    padding-top: 5px;
    background-color: #B8E3FA;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        background-color: #2F83AF;
        color:white;
    }
}

.jfc_oeffentlich_tab {
    width: 50%;
    height: 40px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    color: black;
    padding-top: 5px;
    @media (prefers-color-scheme: dark) {
        color:white;
    }
}

.jfc_oeffentlich_tab.active {
    width: 50%;
    height: 40px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    font-weight: bold;
    color: black;
    padding-top: 5px;
    background-color: rgb(250, 240, 184);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        background-color: #867827;
        color:white;
    }
}

.jfc_oeffentlich_tab_2 {
    width: 100%;
    height: 40px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    font-weight: bold;
    color: black;
    padding-top: 5px;
    background-color: rgb(250, 240, 184);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        background-color: #867827;
        color:white;
    }
}

.jfc_tab_nebeneinander {
    display: flex;
    align-items: center;      /* vertikal zentriert */
    justify-content: center;  /* horizontal zentriert als Gruppe */
    gap: 5px;                 /* Abstand zwischen Icon und Text */
}

.jfc_tab_nebeneinander_2 {
    display: flex;
    align-items: center;      /* vertikal zentriert */
    justify-content: left;
    gap: 15px;                 /* Abstand zwischen Icon und Text */
}

.jfc_tab_nebeneinander_3 {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 15px;
}

.jfc_tab_nebeneinander_3 > div:first-child {
    flex-shrink: 0; /* Icon-Container soll nicht schrumpfen */
}

.jfc_tab_nebeneinander_3 > div:last-child {
    flex: 1; /* nimmt den kompletten restlichen Platz ein */
}

.jfc_tab_icon {
    display: flex;
    align-items: center;
}

.jfc_chat_nnachricht_box {
    width: 100%;
    min-height: 50px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    font-weight: bold;
    color: black;
    padding-top: 5px;
    background-color: white;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        background-color: #2F83AF;
        color:white;
    }
}

.jfc_tab_text {
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* 18px, min: 14px */
    font-size: clamp(0.875em, 2.8vw,  1.125em);
    color: black;
    text-decoration: none;
    background-color: transparent;
    border: none;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_tab_text.active {
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 18px; */ /* min: 12px */
    font-size: clamp(0.875em, 2.8vw,  1.125em);
    font-weight: bold;
    color: black;
    text-decoration: none;
    background-color: transparent;
    border: none;
    @media (prefers-color-scheme: dark) {
        color:white;
    }
}

.jfc_tab_text_2 {
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 18px; */ /* min: 12px */
    font-size: clamp(1em, 2.8vw,  1.125em);
    font-weight: bold;
    color: black;
    text-decoration: none;
    background-color: transparent;
    border: none;
    @media (prefers-color-scheme: dark) {
        color:white;
    }
}

.jfc_linie_tab {
    border: 0.1px solid black;
    @media (prefers-color-scheme: dark) {
        border: 0.1px solid white;
    }
}

.jfc_einstellung_tab {
    width: 100%;
    height: 40px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    font-weight: bold;
    color: black;
    padding-top: 5px;
    background-color: #DBDCDD;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        background-color: #8A9095;
        color:white;
    }
}

.jfc_btn_links_1 {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 12px; min: 6px */
    font-size: clamp(0.375em, 2.8vw, 0.75em);
    font-weight: bold;
    color: black;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 0px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    margin-right: 0px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_btn_links_1.active {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 12px; min: 6px */
    font-size: clamp(0.375em, 2.8vw, 0.75em);
    font-weight: bold;
    color: white;
    background-color: #23A336;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 0px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    margin-right: 0px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        color: black;
        background-color: #23A336;
    }
}

.jfc_box_reaktion {
    min-width: 100px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    font-size: clamp(0.375em, 2.8vw, 0.75em);
    font-weight: bold;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 0px;
    margin-right: 0px;
    border: 1px solid black;
}

.jfc_box_reaktion_folg {
    min-width: 100px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    font-size: clamp(0.375em, 2.8vw, 0.75em);
    font-weight: bold;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 0px;
    margin-right: 0px;
    border: 1px solid black;
    background-color: rgb(147, 178, 114);
    @media (prefers-color-scheme: dark) {
        background-color: #23A336;
    }
}

.jfc_box_reaktion_folg_plus {
    min-width: 100px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    font-size: clamp(0.375em, 2.8vw, 0.75em);
    font-weight: bold;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 0px;
    margin-right: 0px;
    border: 1px solid black;
    background-color: rgb(250, 240, 184);
    @media (prefers-color-scheme: dark) {
        background-color: #867827;
    }
}

.jfc_box_reaktion_blockiert {
    min-width: 100px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    font-size: clamp(0.375em, 2.8vw, 0.75em);
    font-weight: bold;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 0px;
    margin-right: 0px;
    border: 1px solid black;
    background-color: red;
}

.jfc_box_folgt_hinweis {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    font-size: clamp(0.375em, 2.8vw, 0.75em);
    font-weight: bold;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 0px;
    margin-right: 0px;
    border: 1px solid black;
    background-color: rgb(250, 240, 184);
    @media (prefers-color-scheme: dark) {
        background-color: #867827;
    }
}

.jfc_btn_nachricht_neu {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 10px; */
    font-size: clamp(0.375em, 2.8vw, 0.625em);
    font-weight: bold;
    color: white;
    background-color: #2F83AF;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 0px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    margin-right: 0px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #2F83AF;
    }
}

.jfc_content_box {
    position: relative;
}

.jfc_content_box .jfc_content {
    display: none;
}

.jfc_content_box .jfc_content.active {
    display: block;
}

.jfc_zurueck_icon {
    text-align: left;
    width: 16px;
    height: 16px;
}

.jfc_einst_punkt {
    display: flex;
    width: 100%;
    margin-left: 25px;
    margin-bottom: 15px;
}

.jfc_einst_icon {
    padding-top: 0px;
}

.jfc_einst_icon_2 {
    width: 20px;
    height: 20px;
}

.jfc_einst_txt {
    margin-left: 25px;
    /* font-size: 16px; min: 14px */
    font-size: clamp(0.875em, 2.8vw, 1em);
    color: black;
    text-decoration: none;
    @media (prefers-color-scheme: dark) {
        color:white;
    }
}

.jfc_box_einstellungen_menu {
    width: 100%;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.jfc_objekt_mittig {
    display: flex;
    justify-content: center;
}

.jfc_objekt_nebeneinander {
    display: flex;
    align-items: center; /* vertikal zentriert */
    gap: 15px;            /* Abstand zwischen Icon und Name */
}

.jfc_ladekreis {
    width: 70px;
    height: 70px;
    border: 5px solid rgb(220, 220, 220);; /* Hintergrundfarbe des Kreises */
    border-top: 5px solid #23A336; /* Farbe des rotierenden Teils */
    border-radius: 50%;
    animation: jfc_drehung 1s linear infinite; /* Animationseinstellungen */
}

.jfc_start_content_box {
    position: relative;
}

.jfc_profilbild_default {
    text-align: left;
    margin-top: 5px;
    filter: grayscale(100%);
    @media (prefers-color-scheme: dark) {
        filter: invert(100%) grayscale(100%);
    }
}

.jfc_profilbild_2 {
    text-align: left;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 5px;
}

.jfc_profilbild_2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.jfc_profilbild_3 {
    text-align: left;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 5px;
}

.jfc_profilbild_3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.jfc_post_bild_2 {
    width: 600px;
    height: 340px;
    margin-top: 15px;
    margin-left: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.jfc_post_bild_2 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.jfc_post_datum_2 {
    text-align: left;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 10px;
    color: black;
    padding-top: 25px;
    padding-left: 75px;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_post_datum_3 {
    text-align: left;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 10px;
    color: black;
    padding-top: 5px;
    padding-left: 60px;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_post_datum_4 {
    text-align: left;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 12px; */
    font-size: clamp(0.25em, 2.8vw, 0.74em);
    color: black;
    padding-top: 10px;
    padding-left: 70px;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_komm_datum_1 {
    text-align: left;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 12px; */
    font-size: clamp(0.25em, 2.8vw, 0.74em);
    color: black;
    padding-top: 25px;
    padding-left: 75px;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_chat_datum {
    width: 30%;
    text-align: right;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 12px; */
    font-size: clamp(0.25em, 2.8vw, 0.74em);
    color: black;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_input_1 {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.jfc_input_2 {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
}

.jfc_suche_1 {
    text-align: center;
    padding-top: 0px;
    padding-bottom: 20px;
}

.jfc_profil_1 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.jfc_banner_unten_npost {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 10px 0;
    z-index: 1000;
}

.jfc_banner_unten_nkomm {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    padding: 10px 0;
    z-index: 1000;
}

.jfc_button_plus {
    text-align: right;
}

.jfc_abstand_rechts_15 {
    margin-right: 25px;
}

.jfc_btn_neuer_post {
    width: 70px;
    height: 70px;
    text-align: center;
    background-color: #23A336;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_btn_icon {
    border: none;
    background-color: transparent;
}

.jfc_icon_farbe {
    filter: brightness(0) saturate(100%) invert(0%) sepia(8%) saturate(7491%) hue-rotate(51deg) brightness(108%) contrast(96%);
}

.jfc_icon_farbe_invertiert {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7484%) hue-rotate(356deg) brightness(101%) contrast(86%);
}

.jfc_icon_farbe_rot {
    filter: invert(13%) sepia(94%) saturate(7471%) hue-rotate(4deg) brightness(95%) contrast(113%);
}

.jfc_icon_farbe_orange {
    filter: brightness(0) saturate(100%) invert(88%) sepia(81%) saturate(2066%) hue-rotate(310deg) brightness(94%) contrast(104%);
    @media (prefers-color-scheme: dark) {
        filter: brightness(0) saturate(100%) invert(40%) sepia(69%) saturate(482%) hue-rotate(7deg) brightness(96%) contrast(87%);
    }
}

.jfc_icon_farbe_blau {
    filter: brightness(0) saturate(100%) invert(46%) sepia(16%) saturate(2933%) hue-rotate(160deg) brightness(91%) contrast(70%);
}

.jfc_icon_farbe_weiss {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7484%) hue-rotate(356deg) brightness(101%) contrast(86%);
}

.jfc_chat_container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.jfc_chat_box_fremd {
    width: 50vh;
    min-height: 40px;
    padding-top: 5px;
    background-color: #B8E3FA;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    align-self: flex-start;   /* Box links ausrichten */
    margin-bottom: 15px;
}

.jfc_chat_box_selber {
    width: 50vh;
    min-height: 40px;
    padding-top: 5px;
    background-color: #B8E3FA;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    align-self: flex-end;    /* Box rechts ausrichten */
    margin-bottom: 15px;
}

.jfc_komm_1 {
    padding-top: 5px;
    padding-bottom: 5px;
}

#folgt_off, #folgt_on, #blockieren_off, #blockieren_on {
    cursor: pointer;
}

.jfc_kommentar_neu {
    width: 100%;
}

.jfc_kommentar_input {
    width: 80vh;
}

.jfc_kommentar_senden {
    width: 20vh;
}

.jfc_kommentar_box {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: rgb(250, 240, 184);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 0px;
    margin-left: 2px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    margin-right: 0px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        background-color: #867827;
    }
}

.jfc_btn_neuer_komm {
    width: 60px;
    height: 40px;
    text-align: center;
    background-color: #23A336;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_btn_neuer_komm_inaktiv {
    width: 60px;
    height: 40px;
    text-align: center;
    background-color: #DBDCDD;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #8A9095;
    }
}

.jfc_textarea {
    width: 100%;
    text-align: left;
}

.jfc_textarea_beschreibung {
    width: 100%;
    text-align: left;
    padding: 5px;
}

.jfc_schriftart {
    font-family: 'Didact Gothic', sans-serif;
}

.jfc_input_link {
    width: 100%;
    text-align: left;
    padding: 5px;
}

.jfc_btn_speichern {
    min-width: 150px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 14px; */
    font-size: clamp(0.375em, 2.8vw, 0.875em);
    font-weight: bold;
    color: black;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 10px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_btn_loeschen {
    min-width: 150px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 14px; */
    font-size: clamp(0.375em, 2.8vw, 0.875em);
    font-weight: bold;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 0px;
    margin-right: 0px;
    border: 1px solid black;
}

.jfc_breite_100 {
    width: 100%;
}

.jfc_beschreibg_1 {
    width: 2vh;
}

.jfc_beschreibg_2 {
    width: 98vh;
}

.jfc_post_input_link {
    width: 100%; 
    box-sizing: border-box; 
}

.jfc_block_1 {
    width: 70vh;
}

.jfc_block_2 {
    width: 30vh;
}

.jfc_btn_5 {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 12px; */
    font-size: clamp(0.25em, 2.8vw, 0.75em);
    font-weight: bold;
    color: black;
    background-color: rgb(147, 178, 114);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 10px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    margin-right: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_btn_6 {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /* font-size: 12px; */
    font-size: clamp(0.25em, 2.8vw, 0.75em);
    font-weight: bold;
    color: black;
    background-color: rgb(250, 240, 184);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 10px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    margin-right: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #867827;
    }
}

.jfc_markiert_1 {
    width: 100%;
    display: flex;
    padding-top: 10px;
    padding-left: 70px;
}

.jfc_icon_komm {
    height: 20px;
    width: 20px;
}

.jfc_input_komm {
    width: 100%;
    margin-top: 0px;
}

.jfc_post_t1 {
    text-align: left;
    font-family: 'Didact Gothic', sans-serif;
    /* 18px ,min 16px */
    font-size: clamp(1em, 2.8vw, 1.125em);
    color: black;
    @media (prefers-color-scheme: dark) {
        color: white;
    }
}

.jfc_btn_registrieren_1 {
    min-width: 150px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'Didact Gothic', sans-serif;
    /*font-size: 14px;*/
    font-size: clamp(0.625em, 2.8vw, 0.875em);
    font-weight: bold;
    color: white;
    background-color: #23A336;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 10px;
    border-image-width: 1;
    border-color: black;
    border: 1px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    @media (prefers-color-scheme: dark) {
        color: white;
        background-color: #23A336;
    }
}

.jfc_tab_icon_farbe {
    filter: brightness(0) saturate(100%) invert(0%) sepia(8%) saturate(7491%) hue-rotate(51deg) brightness(108%) contrast(96%);
    margin-right: 3px;
}

.jfc_tab_icon_farbe.active {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7484%) hue-rotate(356deg) brightness(101%) contrast(86%);
    margin-right: 3px;
}


@media (prefers-color-scheme: dark) {

    .jfc_tab_icon_farbe {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7484%) hue-rotate(356deg) brightness(101%) contrast(86%);
    }

    .jfc_tab_icon_farbe.active {
        filter: brightness(0) saturate(100%) invert(0%) sepia(8%) saturate(7491%) hue-rotate(51deg) brightness(108%) contrast(96%);
    }

    .jfc_icon_farbe {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7484%) hue-rotate(356deg) brightness(101%) contrast(86%);
    }

    .jfc_icon_farbe_invertiert {
        filter: brightness(0) saturate(100%) invert(0%) sepia(8%) saturate(7491%) hue-rotate(51deg) brightness(108%) contrast(96%);
    }

    .jfc_box_reaktion {
        border: 1px solid white;
    }

    .jfc_btn_loeschen {
        border: 1px solid white;
    }
}

@keyframes jfc_drehung {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@media (max-width: 991px) {

    .jfc_fuss {
        height: 200px;
    }

}

@media (max-width: 768px) {

    .jfc_post_datum_3 {
        padding-left: 40px;
    }

    .jfc_links_3 {
        margin-bottom: 10px;
    }

    .jfc_btn_registrieren_1 {
        min-width: 120px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .jfc_box_5 {
        min-height: 180px;
    }

    .jfc_abstand_rechts_15 {
        margin-right: 15px;
    }

    .jfc_banner_unten_npost {
        height: 90px;
    }

    .jfc_btn_neuer_post {
        width: 60px;
        height: 60px;
    }

    .jfc_btn_4 {
        min-width: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .jfc_profilbild_2 {
        width: 30px;
        height: 30px;
    }

    .jfc_btn_speichern {
        min-width: 100px;
    }

    .jfc_btn_loeschen {
        min-width: 100px;
    }

    .jfc_abstand_links_50 {
        margin-left: 0px;
    }

    .jfc_abstand_links_60 {
        margin-left: 0px;
    }

    .jfc_verifizierung_icon_2 {
        width: 10px;
        height: 10px;    
    }

    .jfc_profilbild_icon_oprofil {
        width: 50px;
        height: 50px;    
    }

    .jfc_input_komm {
        margin-top: 5px;
    }

    .jfc_btn_neuer_komm {
        width: 40px;
    }

    .jfc_btn_neuer_komm_inaktiv {
        width: 40px;
    }

    .jfc_post_datum_4 {
        padding-top: 10px;
        padding-left: 15px;
    }

    .jfc_komm_datum_1 {
        padding-top: 20px;
        padding-left: 10px;
    }

    .jfc_markiert_1 {
        padding-top: 5px;
        padding-left: 15px;
    }

    .jfc_btn_5 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .jfc_tags_1 {
        padding-top: 15px;
        padding-left: 15px;
        margin-top: 15px;
    }

    .jfc_zurueck_icon {
        margin-top: 2px;
    }

    .jfc_tab_text_2 {
        margin-top: 2px;
    }

    .jfc_abstand_oben_10 {
        margin-top: 5px;
    }

    .jfc_box_reaktion {
        min-width: 70px;
    }

    .jfc_abstand_links_20 {
        margin-left: 0px;
    }

    .jfc_abstand_links_20_2 {
        margin-left: 10px;
    }

    .jfc_abstand_links_40 {
        margin-left: 0px;
    }

    .jfc_post_datum_2 {
        padding-top: 25px;
        padding-left: 10px;
    }

    .jfc_posturl2 {
        margin-top: 15px;
        padding-left: 10px;
    }

    .jfc_post_t2 {
        padding-left: 10px;
        padding-top: 15px;
    }

    .jfc_namen_1 {
        padding-top: 0px;
        padding-left: 5px;
    }

    .jfc_privat_tab {
        height: 35px;
    }

    .jfc_oeffentlich_tab {
        height: 35px;
    }

    .jfc_privat_tab.active {
        height: 35px;
    }

    .jfc_oeffentlich_tab.active {
        height: 35px;
    }

    .jfc_abstand_oben_25 {
        margin-top: 15px;
    }

    .jfc_titel {
        margin-top: 2px;
    }

    .jfc_menu_index_app {
        display: none;
    }

    .jfc_menu_index_faq {
        display: none;
    }

    .jfc_app_icon {
        width: 160px;
        height: 160px;
    }

    .jfc_apple_store_icon {
        width: 120px;
        height: 40px;
        object-fit: contain;  
    }
    
    .jfc_google_play_icon {
        width: 120px;
        height: 40px;
        object-fit: contain; 
    }

    .jfc_apple_store_icon_2 {
        width: 120px;
        height: 40px;
        object-fit: contain;  
    }
    
    .jfc_google_play_icon_2 {
        width: 120px;
        height: 40px;
        object-fit: contain; 
    }

    .jfc_warum_icons {
        width: 30px;
        height: 30px;
    }

    .jfc_profilbild_icon {
        width: 30px;
        height: 30px;
        object-fit: contain;        
    }

    .jfc_verifizierung_icon {
        width: 14px;
        height: 14px;
        object-fit: contain;        
    }

    .jfc_box_3 {
        min-height: 160px;
    }

    .jfc_box_4 {
        min-height: 180px;
    }

    .jfc_btn_zu_home {
        width: 100%;
    }

    .jfc_abstand_oben_50 {
        margin-top: 25px;
    }

    .jfc_position_links_2 {
        text-align: center;
    }

    .jfc_btn_anmelden_1 {
        width: 200px;
    }

}
