/*GENERAL*/

.kontakt {
    line-height: 1.250em;
    font-family: 'open_sansregular', sans-serif;
    padding: 5% 27px 10% 34px;
    width: 100%;
}

.contact-teaser {
    font-family: 'open_sanslight', sans-serif;
    cursor: default;
}

.contact-teaser a {
    font-family: 'open_sanslight', sans-serif;
    cursor: pointer;
}

.contact-teaser a.mail:hover {
    text-decoration: underline;
}

.textarea {
    color: #333;
    height: 38px;
    width: 100%;
    border-radius: 3px;
    margin: 0;
    margin-bottom: 13px;
    padding: 0 15px;
    box-sizing: border-box;
    resize: both;
}

.semibold {
    font-family: 'open_sanssemibold', sans-serif;
}

textarea {
    max-width: 100%;
    font-size: 14px;
    margin-top: 5px;
    min-height: 160px;
    padding: 20px;
    width: 100%;
    outline: none;
    border: none;
    box-sizing: border-box;
}

.agg {
    width: 170px;
}

.datenschutz {
    width: 110px;
}


/*CHECKBOX*/

.checkbox-group input[type="checkbox"],
.elearning-dropdown input[type="checkbox"],
.options-container input[type="checkbox"] {
    /* vorhandene Styles */
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid #D5D7DA;
    background: #FFF;
    appearance: none;
    cursor: pointer;
    position: relative;
}

/* Häkchen aus weißen Linien */
.checkbox-group input[type="checkbox"]::after,
.elearning-dropdown input[type="checkbox"]::after,
.options-container input[type="checkbox"]::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 9px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: none;
}

/* checked: oranger Hintergrund & Häkchen anzeigen */
.checkbox-group input[type="checkbox"]:checked,
.elearning-dropdown input[type="checkbox"]:checked,
.options-container input[type="checkbox"]:checked {
    background: #E97406;
    border-color: #E97406;
}
.checkbox-group input[type="checkbox"]:checked::after,
.elearning-dropdown input[type="checkbox"]:checked::after,
.options-container input[type="checkbox"]:checked::after {
    display: block;
}


/* 2) Label “Themen auswählen” */
.topic-label {
    display: block;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

/* 3) Fake-Select (Trigger) */
.custom-select {
    position: relative;
    max-width: 349px;
}
.select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    border: 1px solid #D5D7DA;
    border-radius: 8px;
    background: #FFF;
    cursor: pointer;
    margin:0 0 15px 0;
}
.select-trigger .trigger-text {
    color: #AEAEAE;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}
.select-trigger img {
    width: 24px;
    height: auto;
    pointer-events: none;
}

/* 4) Options-Container */
.options-container {
    display: none;
    position: absolute;
    bottom: 100%;
    top:auto;
    left: 0;
    width: 100%;
    max-height: 600px; /* scrollbar-fähig */
    overflow-y: auto;
    border: 1px solid #F5F5F5;
    border-radius: 8px 8px 0px 0px;
    background: #FFF;
    box-shadow: 0px -10px 16px -4px rgba(10,13,18,0.08),
    0px 4px 6px -2px rgba(10,13,18,0.03);
    z-index: 100;
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* Internet Explorer 10+ */
}

.options-container::-webkit-scrollbar {
    display: none;                  /* Safari & Chrome & iOS */
}
.options-container label {
    display: block;
    padding: 10px 10px 10px 48px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    text-indent: -31px;
    line-height: 24px;
}

.options-container label:first-child {
    border-bottom: 1px solid #DFDFDF;
}
.options-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* 5) geöffnetes Dropdown */
.custom-select.open .options-container {
    display: block;
}

/* Scrollbar-Container */
.options-scrollbar {
    position: absolute;
    bottom: 0;
    right: 0px;
    width: 6px;
    height: 100%;
    z-index: 200;
    pointer-events: none;
    display: none;
    background: transparent;
}

.options-scrollbar-thumb {
    position: absolute;
    left: 0;
    width: 100%;
    min-height: 30px;
    border-radius: 3px;
    background: rgba(60,60,60,0.3);
    transition: background 0.3s;
}

/* Sichtbar wenn offen */

.custom-select.open .options-scrollbar {
    display: block;
}

.custom-select.open .select-trigger {
    border-radius: 0px 0px 8px 8px;
}

.custom-select.open img {
    transform: rotate(180deg);
}

/* Ausgewählte E-Learnings als Tags */
.selected-elearns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.selected-elearn, .selected-more {
    padding: 2px 8px 2px 10px;
    border-radius: 16px;
    border: 1px solid #D9DBDD;
    background: #E5E5E5;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #333;
    display: inline-flex;
    align-items: center;
}

.reset-tags {
   padding: 3px 15px 3px 15px
}

.selected-elearn .remove {
    margin-left: 8px;
    cursor: pointer;
    font-weight: bold;
}



input[type="submit"] {
    float: none;
}

.press_date {
    font-size: 11px;
    color: #848484;
}

.press_article {
    margin-top: 150px;
}

.press_article:first-child {
    margin-top: 80px;
}


.press_article .right {
    width: 70%;
}

.press_article .left {
    width: 25%;
}

.press_article .right, .press_article .left {
    float: left;
}

.press_article .left {
    /* margin-right:50px; */
    margin-right: 3%;
    margin-top: 8px;
}

.press_article .left img {
    width: 100%;
}

.press_showmore {
    padding: 8px 42px 11px 28px;
    background: url("../img/button_arrow_facing_down") #E97406 no-repeat right 13px;
    border: none;
    color: #fff;
    font-size: 14px;
    font-family: 'open_sansregular', sans-serif;
    margin: 100px auto 150px;
    outline: none;
    cursor: pointer;
}

.press_showmore:hover {
    background-color: #C96507;
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}

.presse-column {
    text-align: center;
}

.press_article .share_btns {
    display: none;
}

.press_article .right h3,
.press_article .right h3 a {
    font-size: 21px;
    line-height: 24px;
    font-family: 'open_sanslight';
    margin-top: 7px;
    margin-bottom: 8px;
    color: #333;
}

.press_article .right h3 a:hover {
    text-decoration: none;
}

.press_subheadline {
    font-family: 'open_sanssemibold';
    margin-bottom: 15px;
}

.presse_mehr {
    text-decoration: none;
    display: inline-block;
    padding-right: 15px;
    background: url(../img/pfeil-orange.png) right no-repeat;
}

/* Satelliten Kontaktseite */

.contact-box .column {
    padding: 60px 5%;
}

.contact-box h1 {
    font-size: 32px;
    line-height: 38px;
    font-family: 'open_sanslight';
}

.contact-box .left {
    float: left;
    width: 46.5625%;
}

.contact-box .right {
    float: right;
    width: 46.5625%;
}

.contact-box p strong {
    color: #fff;
}

.checkbox-group label {
    margin-bottom: 12px;
}


/*SUBMIT BTN*/

input[type="submit"]:hover {
    background-color: #C96507;
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}


/* .press_text{
    width:800px;
} */

/*ABFRAGE PRESSEARTIKEL*/
.press_article:nth-child(n+6) {
    display: none;
}

.press_article:last-child {
    margin-bottom: 150px;
}

/* MAP */

#map {
    width: 100%;
    height: 685px;
    background-color: #e5e3df;
}


/*FLOATS*/

.sharefloat {
    float: left;
    margin-top: 29px;
}

.kontakt_linkespalte {
    float: left;
    width: 47.5%;
}

.kontakt_rechtespalte {
    float: right;
    width: 47.5%;
}

.interesse_links {
    float: left;
    width: 50%;
}

.trainingsprodukte_links {
    float: left;
    width: 215px;
}

.interesse_rechts {
    float: right;
    width: 180px;
}

.trainingsprodukte_rechts {
    float: right;
    width: 180px;
}

.telefon1 {
    width: 60% !important;
    float: left;
}

.telefon2 {
    width: 38% !important;
    float: right;
}

.hr2 {
    float: left;
    width: 100%;
}

.daten_right {
    float: right;
}

.datensub_right {
    float: right;
}

.datensub_left {
    float: left;
}

.daten_left {
    float: left;
}

.check_linkespalte_links {
    float: left;
    width: 60%;
    /* margin-top:23px; */
}

.check_linkespalte_rechts {
    float: right;
    width: 150px;
    /* margin-top:23px; */
}

/*MARGINS*/

.hl_optik1 {
    margin-bottom: 50px;
    margin-top: 10px;
}

.margin_textarea {
    margin-bottom: 6px;
    margin-top: 20px;
    float: left;
}

.textarea_spez {
    height: 205px;
}

/* Nur Firefox
@-moz-document url-prefix() {
    .textarea_spez{
        height:195px;
    }
}

@media (max-width: 1415px) {
    .textarea_spez{
        height:180px;
    }


    @-moz-document url-prefix() {
        .textarea_spez{
            height:169px;
        }
    }
}
*/


.margin_div_checkbox {
    margin-bottom: -8px;
}

hr {
    margin: 20px 0 18px 0;
}

.checkwrap {
    margin-bottom: 9px;
    width: 100%;
    float: left;

}

label {
    cursor: pointer;
}

.email_area {
    margin-bottom: 36px;
}

.margin_interesse {
    margin-bottom: 5px;
    float: left;
    width: 100%;
}

.margin_content {
    margin-bottom: 7px;
    float: left;
    width: 100%;
}

.margin_standardc {
    margin-bottom: 7px;
    float: left;
    width: 100%;
}

.margin_indiv_content {
    margin-bottom: -8px;
}

.margin_submit {
    margin-top: 60px !important;
    float: left !important;
}

.moreabsatz {
    margin-top: 14px;
}

.moreabsatz2 {
    margin-bottom: 27px !important;
}

.moreabsatz span {
    width: 110px;
    display: inline-block;
}

table tbody tr th {
    max-width: 110px;
}

table {
    margin: 20px 0 0 0;
}

.select_anrede {
    margin-bottom: 5px;
}

.gm-style-cc {
    top: 0;
}

.gmnoprint {
    right: 0;
}

/* Safari 9.0+ (iOS Only) */

@supports (-webkit-text-size-adjust:none) and (not (-ms-accelerator:true))
and (not (-moz-appearance:none)) {

    .select_anrede {
        margin-bottom: 15px;
    }
}

.interessen {
    margin-top: 16px;
}

.spez {
    margin-top: 11px;
}

.trainingsprodukte,
.software,
.beratung {
    margin-left: 40px;
    margin-top: 11px;
    display: none;
}

.sw_unfold {
    margin-top: -14px;
}

.contact-forms {
    margin-top: 0px;
}

.margibug {
    margin-top: -12px;
}

.checkwrap.firstc {
    margin-top: 20px;
}

/*----- bugfixes ----*/

.fontsizebug {
    font-size: 0.9em;
}

.morezab {
    line-height: 1.857142857142857em;
}

.morezab2 {
    line-height: 1.77em;
}

.opensansreg {
    font-family: 'open_sansregular' !important;
}

.margin_pslist {
    margin-bottom: 71px;
}

.erforderlichefelder_pc {
    margin-top: 0px;
}

.erforderlichefelder_mob {
    margin-top: 10px;
    display: none;
}


/* MEDIA QUERIES */



@media (max-width: 1270px) {
    .checkbox-group {
        gap: 10px;
    }

    .checkbox-group.interests-group  {
        gap:0px;
    }
}


@media (max-width: 1415px) {
    .onlinepraesi {
        width: 200px;
    }
}

@media (min-width: 962px) {
    .daten_left {
        width: 60% !important;
    }
}

@media (min-width: 766px) and (max-width: 961px) {
    .daten_left {
        width: 50% !important;
    }


    .daten_right {
        float: right;
    }

    .datensub_right {
        float: right;
    }

    .col-4 {
        width: 38.33333333333333%;
    }

    .onlinepraesi {
        width: 130px;
    }

    .check_linkespalte_links {
        width: 55%;

    }
}

@media (max-width: 800px) {
    .check_linkespalte_links {
        width: 100%;
    }

    .onlinepraesi {
        width: 250px;
    }

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

    @media (max-width: 765px) {

        .daten_left {
            width: 100% !important;
        }

        .daten_right {
            float: left;
            margin-top: 20px;
            width: 100% !important;
        }

        .datensub_right {
            float: left;
            margin-left: 20px;
        }

        .contact-info {
            height: 100% !important;
        }

        .ui-menu .ui-menu-item {
            padding: 3px 1em 11px 0.4em;
        }
    }

    @media (max-width: 910px) {
        .interesse_links {
            width: 100%;
        }

        .interesse_rechts {
            float: left;
            margin-top: 15px;
        }

        .trainingsprodukte_links {
            width: 100%;
        }

        .trainingsprodukte_rechts {
            float: left;
            width: 100%;
        }

        .agg {
            width: 300px;
        }

        .datenschutz {
            width: 250px;
        }

    }
    .col-4 {
        width: 45%;
    }
}

@media (max-width: 725px) {

    .erforderlichefelder_pc {
        display: none;
    }

    .erforderlichefelder_mob {
        display: block;
    }

    .textarea_spez {
        width: 100%;
    }

    .kontakt_linkespalte {
        width: 100%;
    }

    .kontakt_rechtespalte {
        float: left;
        width: 100%;
        margin-top: 10px;
    }

    .margin_submit {
        margin-top: 20px !important;
    }
}


@media (max-width: 600px) {
    .unternehmen #column-2 {
        margin: 0 0 -15px 0 !Important;
    }

    .socialPlugin .socials {
        margin-top: 0px;
    }

    .press_article .left {
        display: none;
    }

    .press_article .right {
        padding: 5%;
        width: 100%;
        box-sizing: border-box;
    }

    .press_article {
        margin-top: 10px;
    }

    .press_showmore {
        margin: 20px auto 20px;
    }

    .request-box.utility.cbg_orange {
        right: 0;
        width: 100%;
    }

    .contact-box .right,
    .contact-box .left {
        float: none;
        width: 100%;
    }

    .contact-box h1 {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 400px) {
    .datensub_right {
        float: left;
        margin-left: 10px;
    }

    .moreabsatz span {
        width: 90%;
        display: block;
    }

    input[type="submit"] {
        width: 100%;
    }

    .margin_checkbox {
        margin: 6px 0 0 0;
        float: none;
    }


}

@media (max-width: 333px) {
    .datensub_right {
        float: left;
        margin-left: 10px;
    }

    .moreabsatz span {
        width: 100%;
        display: block;
    }

    input[type="submit"] {
        font-size: 0.9em;
    }

    .margin_checkbox {
        font-size: 0.9em;
    }

    .textarea_spez {
        font-size: 0.9em;
    }
}

/* fix für den umbruch von Quickcheck "o.ä." im firefox*/

@-moz-document url-prefix() {
    @media (max-width: 941px) {
        .umbruch2 {
            margin-left: 0;
        }

        .umbruch3 {
            margin-left: 42px;
            display: block;
        }
    }

    @media (max-width: 742px) {
        .umbruch2 {
            margin-left: 42px;
            display: block;
        }

    }

    @media (max-width: 600px) {
        .umbruch2 {
            margin-left: 0;
            display: inline;
        }

        .umbruch3 {
            margin-left: 0;
            display: inline;
        }
    }

    @media (max-width: 429px) {
        .umbruch3 {
            margin-left: 42px;
            display: block;
        }

    }

    @media (max-width: 340px) {
        .umbruch2 {
            margin-left: 42px;
            display: block;
        }

    }
}

/* Warum E-Learning */

.teaserlearn {
    width: 26% ! important;
}

.learning-head {
    margin-top: 50px;
    margin-bottom: -20px;
    font-size: 21px;
    font-family: 'open_sanslight';
    line-height: 32px;
}

.learning-container {
    padding-left: 32px;
    margin-bottom: 90px;
}

.learning-container img {
    width: 15%;
    margin-top: 50px;
    margin-right: 6%;
}

.learning-bbl {
    float: left;
    height: 180px;
    width: 5%;
    background-image: url(../img/learning-bbl.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
}

.learning-container p {
    float: left;
    display: table;
    height: 80px;
    width: 53%;
    padding: 50px 10%;
    background-color: #f1f5f8;
}

.learning-container strong {
    display: table-cell;
    vertical-align: middle;
}


.learning-container img, .learning-container p {
    float: left;
}

.learning-links {
    margin-right: 5%;
}

.learning-links, .learning-rechts {
    width: 47%;
    float: left;
}

.learning-wrap {
    margin-top: 20px;
}

/* Kontakt */

/* Basis-Container */
.contact-section {
    width: 100%;
    padding: 96px 0px;
    box-sizing: border-box;
}

.contact-container {
    max-width: 1252px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Flex-Layout: Text links, Formular rechts */
.contact-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap; /* fällt bei sehr kleinen Viewports sauber um */
}

/* Linker Text-Bereich */
.contact-info {
    flex: 1 1 20%;
}

.contact-container a.tel {
    text-decoration: none !important;
}

.contact-info h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 44px;
    color: #333;
    margin: 0 0 16px;
}

.contact-info p {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 27px;
    color: #555;
    margin: 0;
}

.send-p, .send-h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 27px;
    color: #555;
    margin: 0;
}

.send-h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info a {
    color: inherit;
    text-decoration: underline;
}

/* Formular-Bereich */
.contact-form {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    background: #F2F2F2;
    padding: 40px 50px 50px 50px;
    border-radius: 12px;
}

/* Einleitender Text */
.form-intro {
    font-family: "Open Sans", sans-serif;
    margin: 0 0 12px;
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
}

/* Checkbox-Gruppen (je 4 nebeneinander) */
.checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Open Sans", sans-serif;
    overflow: hidden;
    color: #595959;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 168.75% */
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid #D5D7DA;
    background: #FFF;
    appearance: none;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"]:checked {
    /* Beispiel: oranger Hintergrund beim Ankreuzen */
    background: #E97406;
    border-color: #E97406;
}

/* Zwei-Spalten-Layout für Input-Felder */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 26px;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 8px;
    font-family: "Open Sans", sans-serif;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
}

.form-field input {
    box-sizing: border-box;
    height: 44px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #D5D7DA;
    background: #FFF;
}

/* Textarea über volle Breite */
.full-width {
    width: 100%;
    margin-bottom: 26px;
}

.full-width textarea {
    min-height: 120px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #D5D7DA;
    background: #FFF;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #333;
    resize: vertical;
    line-height: 24px; /* 142.857% */
}

/* Titel über der zweiten Checkbox-Gruppe */
.interests-title {
    font-family: "Open Sans", sans-serif;
    margin: 0 0 12px;
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
}

/* Submit-Button */
.submit-button {
    height: 48px;
    padding: 0 20px;
    border: none;
    border-radius: 12px;
    background: #E97406;
    color: #FFF;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    cursor: pointer;
    align-self: flex-start;
    margin: -30px 0 0 0;
}



@media (max-width: 1400px) {

    .learning-container p {
        min-height: 100px;
    }

    .learning-container img {
        margin-top: 65px;
    }

    .learning-bbl {
        height: 200px;
    }
}

@media (max-width: 1000px) {

    .learning-links, .learning-rechts {
        width: 90%;
        margin-right: 0;
        float: none;
    }

    .learning-container img {
        width: 100px;
        margin-top: 35px;
    }

    .learning-container p {
        min-height: 60px;
    }

    .learning-bbl {
        height: 180px;
        width: 3%
    }
}


@media (max-width: 750px) {

    .contact-form {
        padding:30px 20px 30px 20px;
    }


    .learning-container p {
        width: 50%
    }

}

@media (max-width: 645px) {

    #whylearn-img7 {
        margin-top: 45px;
    }

    .learning-bbl.lb7 {
        height: 200px;
    }

}


@media (max-width: 890px) {
    .contact-info {
        display:flex;
        flex:1;
    }
}


@media (max-width: 600px) {

    .learning-head {

        margin-bottom: 20px;

    }

    .learning-container {
        padding-left: 5%;
    }

    .learning-container img {
        width: 70px;
        margin-top: 55px;
    }

    .learning-container p {
        width: 42%;
        padding: 50px 15%;
    }

    .learning-container {
        margin-bottom: 80px;
        margin-top: -20px;
    }

    #whylearn-img7 {
        margin-top: 75px;
    }

    .learning-bbl.lb7 {
        height: 220px;
    }

    #whylearn-img8 {
        margin-top: 65px;
    }

    .learning-bbl.lb8 {
        height: 200px;
    }

}

@media (max-width: 554px) {

    #whylearn-img7 {
        margin-top: 85px;
    }

    .learning-bbl.lb7 {
        height: 240px;
    }

}

@media (max-width: 548px) {

    #whylearn-img8 {
        margin-top: 75px;
    }

    .learning-bbl.lb8 {
        height: 220px;
    }

}

@media (max-width: 482px) {

    #whylearn-img7 {
        margin-top: 100px;
    }

    .learning-bbl.lb7 {
        height: 260px;
    }

}

@media (max-width: 465px) {

    #whylearn-img5 {
        margin-top: 65px;
    }

    .learning-bbl.lb5 {
        height: 200px;
    }

}

@media (max-width: 440px) {

    #whylearn-img8 {
        margin-top: 85px;
    }

    .learning-bbl.lb8 {
        height: 240px;
    }

}

@media (max-width: 430px) {

    .learning-container img {
        width: 60px;
        margin-top: 55px;
    }

    .learning-container p {
        font-size: 13px;
        width: 40%;
        padding: 50px 15%;
    }


}

@media (max-width: 400px) {

    .learning-container img {
        width: 60px;
        margin-top: 55px;
    }

    .learning-container p {
        padding: 50px 10%;
        width: 45%
    }


}


/* Glossar*/

.glossar-bezeichnung {
    width: 30%;
    float: left;
    font-family: 'open_sanslight', sans-serif;
    font-size: 21px;
}

.glossar-erklaerung {
    width: 65%;
    float: right;
}

.glossar-item {
    padding: 50px 0 40px 0;
    border-bottom: 1px solid #d7d7d7;
}

.glossar-item li {
    margin-left: -20px;
}

#Buchstabe_Z .glossar-item:last-child {
    border-bottom: none;
    margin-bottom: -80px;
}

.fixed {
    position: fixed;
    width: 1076px;
    background: #fff;
    margin-top: -190px;
    padding-top: 20px;
    z-index: 1000;
}

sub {
    vertical-align: sub;
    font-size: 0.55em;
}

.glossarnav {
    width: 100%;
}

.glossarclick a {
    margin-left: 1px;
    height: 28px;
    background-color: #e4ebf2;
    width: 4.66%;
    text-align: center;
    float: left;
    padding-top: 10px;
    cursor: pointer;
    color: #333333;;

}

.lp-glossar .submenu,
body.unterseite.lp-glossar #submenu {
    display: none !important;
}

.landingpage .glossarclick a {
    width: 35px;
    margin-top: 1px;
}

.landingpage .quickcheck_box {
    margin-top: 0px;
}

.glossarclick a:hover {
    background-color: #97a6b7;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 1400px) {

    .glossarclick a {
        width: 4.64%;
    }

    .fixed {
        width: 890px;

    }


}

@media (max-width: 1000px) {

    .glossarclick a {
        width: 4.61%;
    }

    .fixed {
        width: 81%;
    }

    .gloss_pad {
        padding-bottom: 67px;
    }

    .hl_optik1 {
        margin-top: 33px;
    }

    body.lp-glossar #column-2 {
        margin-top: 0 !important;
        margin-bottom: 40px;
    }
}

@media (max-width: 852px) {

    .glossarclick a {
        width: 4.59%;

    }

}

@media (max-width: 760px) {
    .fixed {
        width: 80.2%;
    }

    .glossarclick a {
        width: 4.56%;

    }

}

@media (max-width: 650px) {

    .glossarclick a {
        width: 4.55%;

    }

    .submit-button {
        width:100%;
        text-align: center;
    }

}

@media (max-width: 605px) {

    .glossarclick a {
        width: 4.54%;

    }

}

@media (max-width: 600px) {

    .glossarclick a {
        margin-bottom: 1px;
        width: 16.4%;
        height: 35px;
        padding-top: 15px;

    }

    .glossarnav {
        width: 100%;
        position: absolute;
        margin-bottom: 40px;
        height: 420px;
        margin-left: 0;
    }

    body.lp-glossar .glossarnav {
        width: 100%;
        position: relative;
        margin-bottom: 50px;
        height: 100px;
        margin-left: 0;
        margin-top: -40px;
    }

    .gloss_pad {
        padding-bottom: 31px;
    }

    .glossarclick a {

    }

    .fixed {
        width: 100%;
        position: relative;
        background: #fff;
        margin-top: 0;
        margin-left: 0;
    }

    #Buchstabe_A {
        margin-top: 240px;
    }

    body.lp-glossar #Buchstabe_A {
        margin-top: 0px;
    }

    .glossar-bezeichnung {
        width: 100%;
        margin-bottom: 30px;
    }

    .glossar-erklaerung {
        width: 100%;
        float: left;
    }

    .glossar-item {
        width: 100%;
    }

    footer {
        height: 190px;
    }

}

@media (max-width: 430px) {

    .glossarclick a {
        width: 16.2%;
    }

}

/*fix für den quickcheck im ff*/
@-moz-document url-prefix() {

    @media (max-width: 812px) {

        .glossarclick a {
            width: 4.58%;
        }
    }
    @media (max-width: 700px) {

        .glossarclick a {
            width: 4.56%;
        }
    }
    @media (max-width: 635px) {

        .glossarclick a {
            width: 4.55%;
        }
    }
    @media (max-width: 610px) {

        .glossarclick a {
            width: 4.54%;
        }
    }
    @media (max-width: 600px) {

        .glossarclick a {
            margin-bottom: 1px;
            width: 16.3%;
            height: 35px;
            padding-top: 15px;
        }
    }
}

@media (max-width: 1000px) {
    .form-row {
        flex-direction: column;
    }

    .checkbox-group {
        gap: 0px;
    }

    .checkbox-group label {
        margin:0 12px 10px 0;
    }

}