.zeichnung_test{
    z-index: 100;
    border: 3px solid red;
    width: 200px;
    height: 200px;
}

.zeichnung_test2{
    z-index: 100;
    border: 3px solid red;
    width: 400px;
    height: 400px;
}

.sonstiges_erfolgreich{
    border: 3px solid #00b62f;
    border-radius: 10px;
    color: #00b62f;
    font-weight: bold;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 10px;
    padding: 10px;
}

.sonstiges_fehler{
    border: 3px solid #e3010f;
    border-radius: 10px;
    color: #e3010f;
    font-weight: bold;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 10px;
    padding: 10px;
}

.sonstiges_start_tabelle{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: white;
    border: 3px solid #106eb4;
    border-radius: 10px;
    padding: 10px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 20vh;
}

.sonstiges_start_tabelle a{
    display: block;
    color: #106eb4;
    font-size: 25px;
    background-color: #eaeaea;
    /*border: 3px solid #106eb4;*/
    background-image: linear-gradient(132deg, #eaeaea, white);
    border: 1px solid #eaeaea;
    border-radius: 10px;
    box-shadow: 4px 4px 4px 0px #8080806a;
    text-decoration: none;
    width: 400px;
    height: auto;
    padding: 20px;
    transition: 0.4s;
}

.sonstiges_start_tabelle a:hover{
    /*box-shadow: inset 4px 4px 4px 0px #808080;*/
    box-shadow: 
        0 8px 15px #8080806a,      /* Tieferer Schatten */
        0 0 15px rgba(0,123,255,0.7);    /* Blauer Standard-Glow */
    transform: translateY(-2px);
    transition: 0.4s;
}

.sonstiges_start_tabelle img{
    height: 28px;
    width: auto;
    margin-bottom: -5px;
}

.sonstiges_start_tabelle .sonstiges_start_tabelle_2spalten{
    grid-column: 1/3;
    display: flex;
    justify-content: center;
}

.sonstiges_burgerking_tabelle{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 15px;
    justify-content: center;
    border: 3px solid #106eb4;
    border-radius: 10px;
    background-color: white;
    padding: 10px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 25vh;
}

.sonstiges_burgerking_tabelle_unter{
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto;
    column-gap: 20px;
    width: fit-content;
    align-items: center;
}

.sonstiges_burgerking_hinweis{
    display: flex;
    align-items: center;
    font-size: 16px;
    color: gray;
}

.sonstiges_burgerking_hinweis img{
    height: 18px;
    width: auto;
}

.sonstiges_burgerking_abstand{
    display: block;
    margin-bottom: 40vh;
}

.sonstiges_faq_uebersicht{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: center;
    row-gap: 5px;
    background-color: white;
    border: 3px solid #106eb4;
    border-radius: 10px;
    padding: 10px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 20px;
}

.sonstiges_faq_uebersicht img{
    height: 30px;
    width: auto;
    margin-bottom: -8px;
}

.sonstiges_faq_tabelle{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 15px;
    background-color: white;
    border: 3px solid #106eb4;
    border-radius: 10px;
    padding: 10px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 20px;
}

.sonstiges_faq_tabelle_ueber{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    color: #e3010f;
    font-weight: bold;
}

.sonstiges_faq_tabelle_ueber img{
    height: 30px;
    width: auto;
}

.sonstiges_faq_tabelle_text img{
    max-width: 90%;
    max-height: 300px;
    border: 3px solid #eaeaea;
    border-radius: 10px;
    box-shadow: 4px 4px 4px 0px #8080806a;
    margin-bottom: 20px;
}

.sonstiges_faq_tabelle_zahl{
    display: block;
    font-size: 30px;
    font-weight: bold;
    color: #e3010f;
}

/*Impressum*/
#sonstiges_impressum_haupt{
    margin-top: 20px;
    margin-left: 50px;
    margin-right: 50px;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

#sonstiges_impressum_haupt a{
    display: inline-block;
    position: relative;
    color: #106eb4;
    text-decoration: none;
}

#sonstiges_impressum_haupt a::after{
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #106eb4;
    transform-origin: bottom center;
    transition: transform 0.3s ease-out;
}
  
#sonstiges_impressum_haupt a:hover::after{
      background-color: #106eb4;
      transform: scaleX(1);
      transform-origin: bottom center;
}

#sonstiges_impressum_haupt img{
    height: 20px;
    margin-bottom: -3px;
}

.sonstiges_impressum_text{
    margin-bottom: 20px;
}

.sonstiges_impressum_ueberschrift{
    font-size: 25px;
    color: #e3010f;
    font-weight: bold;
}

.sonstiges_impressum_ueberschrift_klein{
    font-size: 18px;
    color: #e3010f;
    font-weight: bold;
    align-items: baseline;
}


/* Kontakt */
#sonstiges_kontakt_haupt{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    column-gap: 10px;
    row-gap: 30px;
    border: 3px solid #106eb4;
    border-radius: 10px;
    padding: 10px;
    margin-left: 50px;
    margin-right: 50px;
    background-color: white;
}

#sonstiges_kontakt_haupt a{
    display: inline-block;
    position: relative;
    color: #106eb4;
    text-decoration: none;
}

#sonstiges_kontakt_haupt a::after{
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #106eb4;
    transform-origin: bottom center;
    transition: transform 0.3s ease-out;
}
  
#sonstiges_kontakt_haupt a:hover::after{
      background-color: #106eb4;
      transform: scaleX(1);
      transform-origin: bottom center;
}

.sonstiges_kontakt_ueberschrift{
    text-align: center;
    font-size: 25px;
    color: #e3010f;
    font-weight: bold;
}

.sonstiges_kontakt_google{
    margin-left: 20px;
    margin-right: 20px;
}

.sonstiges_kontakt_seite{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto) 1fr;
    row-gap: 5px;
    text-align: center;
}

.sonstiges_kontakt_seite img{
    height: 20px;
    margin-bottom: -3px;
}

.sonstiges_kontakt_ueberschrift_2spalten{
    grid-column: 1/3;
    text-align: center;
    font-size: 25px;
    color: #e3010f;
    font-weight: bold;
}

.sonstiges_kontakt_formular{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    row-gap: 10px;
    column-gap: 5px;
}

.sonstiges_kontakt_formular label{
    cursor: pointer;
}

.sonstiges_kontakt_formular textarea{
    padding: 5px;
    width: 95%;
    height: 100px;
}

.sonstiges_kontakt_formular_2spalten{
    grid-column: 1/3;
}

.sonstiges_kontakt_formular_auswahl{
    border: 2px solid #106eb4;
    border-radius: 10px;
    padding: 5px;
    width: 120px;
}

.sonstiges_kontakt_eingabe{
    border: 2px solid #106eb4;
    border-radius: 10px;
    padding: 5px;
    width: 90%;
}

.sonstiges_kontakt_eingabe_min{
    border-radius: 10px;
    padding: 5px;
    width: 90%;
}

.sonstiges_kontakt_eingabe_min:invalid{
    border: 2px solid #e3010f;
    border-radius: 10px;
}

.sonstiges_kontakt_eingabe_min:valid{
    border: 2px solid #106eb4;
    border-radius: 10px;
}

.sonstiges_kontakt_bestaetigung{
    grid-column: 1/3;
    color: #00b62f;
    font-weight: bold;
}


/* Schulung */
.sonstiges_schulung_mitte{
    text-align: center;
}

.sonstiges_schulung_rechts{
    text-align: right;
}

.sonstiges_schulung_auswahl{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto;
    column-gap: 5px;
    row-gap: 10px;
    width: fit-content;
    border: 1px solid #106eb4;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 4px 4px 4px 0px #8080806a;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25vh;
}

.sonstiges_schulung_auswahl_2spalten{
    grid-column: 1/3;
}

.sonstiges_schulung_kurz{
    font-size: 14px;
    color: gray;
}

.sonstiges_schulung_auswahl_unterteilung{
    grid-column: 1/3;
    border-bottom: 3px solid #106eb4;
    height: 3px;
    width: 100%;
}

.sonstiges_schulung_reserviert{
    font-size: 12px;
}

.sonstiges_schulung_ueber{
    grid-column: 1/3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: white;
    padding: 5px;
    background-image: url("../media/grafiken/ki/schulung.png");
    background-position: center;
    background-size: cover;
    border-radius: 10px;
}

.sonstiges_schulung_ueber img{
    height: 100px;
    width: auto;
}

.sonstiges_schulung_textfeld{
    border: 2px solid #106eb4;
    border-radius: 10px;
    padding: 5px;
    width: 90%;
    height: 80px;
}

.sonstiges_schulung_fehler{
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    justify-content: center;
    text-align: center;
    width: fit-content;
    border: 2px solid #e3010f;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 4px 4px 4px 0px #8080806a;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35vh;
}

.sonstiges_schulung_fehler_anzahl{
    display: flex;
    justify-content: center;
    text-align: center;
    width: fit-content;
    border: 2px solid #e3010f;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 4px 4px 4px 0px #8080806a;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.sonstiges_schulung_fehler_2spalten{
    grid-column: 1/3;
}

.sonstiges_schulung_ok{
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
    width: fit-content;
    border: 2px solid #00b62f;
    border-radius: 10px;
    box-shadow: 4px 4px 4px 0px #8080806a;
    background-color: white;
    color: #00b62f;
    font-weight: bold;
    padding: 5px;
    margin-bottom: 50vh;
    margin-right: auto;
    margin-left: auto;
}


/* Stellenangebote */
.sonstiges_stellenangebote_tabelle{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 30px;
    align-items: center;
    background-color: white;
    border: 3px solid #106eb4;
    border-radius: 10px;
    padding: 20px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 40vh;
}

.sonstiges_stellenangebote_tabelle a{
    display: grid;
    grid-template-columns: 200px 1fr repeat(2, auto);
    grid-template-rows: 100px;
    column-gap: 15px;
    align-items: center;
    text-decoration: none;
    background-image: linear-gradient(132deg, #eaeaea, white);
    color: #106eb4;
    font-size: 28px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    box-shadow: 4px 4px 4px 0px #8080806a;
    transition: 0.4s;
    padding: 5px;
}

.sonstiges_stellenangebote_tabelle a:hover{
    box-shadow: 
    0 8px 15px #8080806a,      /* Tieferer Schatten */
    0 0 15px rgba(0,123,255,0.7);    /* Blauer Standard-Glow */
    transform: translateY(-5px);
    /*box-shadow: inset 4px 4px 4px 0px #808080;*/
    transition: 0.4s;
}

.sonstiges_stellenangebote_tabelle_ueber_klein{
    font-size: 16px;
    color: #e3010f;
    font-weight: bold;
}

.sonstiges_stellenangebote_tabelle_bild{
    display: flex;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.sonstiges_stellenangebote_tabelle_detail{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 10px;
    padding: 10px;
    background-color: white;
    border: 3px solid #106eb4;
    border-radius: 10px;
    box-shadow: 4px 4px 4px 0px #8080806a;
    width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.sonstiges_stellenangebote_tabelle_detail_bild{
    display: flex;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

.sonstiges_stellenangebote_tabelle_detail_ueber{
    color: #e3010f;
    font-weight: bold;
    font-size: 20px;
}

.sonstiges_stellenangebote_tabelle_detail_ueber_klein{
    font-size: 14px;
    color: #e3010f;
    font-weight: bold;
}

.sonstiges_stellenangebote_fehler{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    border: 2px solid #e3010f;
    border-radius: 10px;
    background-color: white;
    padding: 5px;
    margin-bottom: 40vh;
    box-shadow: 4px 4px 4px 0px #8080806a;
    margin-left: 50px;
    margin-right: 50px;
}