/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('webfonts/open-sans-v34-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('webfonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('webfonts/open-sans-v34-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('webfonts/open-sans-v34-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('webfonts/open-sans-v34-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('webfonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('webfonts/open-sans-v34-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('webfonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('webfonts/open-sans-v34-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('webfonts/open-sans-v34-latin-700.woff') format('woff'), /* Modern Browsers */
       url('webfonts/open-sans-v34-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('webfonts/open-sans-v34-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url('webfonts/open-sans-v34-latin-italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('webfonts/open-sans-v34-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('webfonts/open-sans-v34-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('webfonts/open-sans-v34-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('webfonts/open-sans-v34-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('webfonts/open-sans-v34-latin-italic.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-700italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: url('webfonts/open-sans-v34-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('webfonts/open-sans-v34-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('webfonts/open-sans-v34-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('webfonts/open-sans-v34-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('webfonts/open-sans-v34-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('webfonts/open-sans-v34-latin-700italic.svg#OpenSans') format('svg'); /* Legacy iOS */
}

:root {

     --farbe1 : rgba(49,48,48,1);

     --button : rgb(124, 124, 124);

    --abstand: 30px;
}

        html,body {

            margin:0;
            padding:0;

        }

        body {
            -webkit-text-size-adjust: none;
            font-size:14px;
            font-family: 'Open Sans';
            color: #666;
           
        }

        a {
            color: #666;
        }


.farbe1 {
            color:var(--farbe1)
        }

.farbe2 {
    color:var(--button)
}

/**********************SCROLLBAR******************************************************************/

/* Für alle Scrollbars auf der gesamten Website */
*::-webkit-scrollbar {
    width: 12px;  /* Breite der vertikalen Scrollbar */
    height: 10px; /* Höhe der horizontalen Scrollbar (falls vorhanden) */
}

*::-webkit-scrollbar-track {
    background: #f0f0f0;  /* Hintergrund der Scrollbar-Leiste */
    border-radius: 3px;   /* Abgerundete Ecken */
}

*::-webkit-scrollbar-thumb {
    background-color: #888;  /* Farbe des Scrollbalkens */
    border-radius: 3px;      /* Abgerundete Ecken für den Scrollbalken */
    border: 2px solid #f0f0f0; /* Rand um den Scrollbalken */
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #555;  /* Dunklere Farbe beim Hover */
}


/****************************************************************************************/
.col {
            display: flex;
            flex-wrap: wrap;
            box-sizing: border-box;
            height: 100%;


        }
.row {
           box-sizing: border-box;


        }
.row2 {
            width: 16.66%;

        }
.row3 {
            width: 25%;

        }

.row4 {
            width: 33.33%;
        }
.row6 {
            width: 50%;
        }
.row7 {
            width: 58.33%;
        }
.row8 {
            width: 66.66%;
        }
.row9 {
            width: 75%;
        }
.row10 {
            width: 83.33%;
        }
.row12 {
            width: 100%;
        }
/****************************************************************************************/

h1 {
            font-weight: normal;
            font-size:36px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

h2 {

            font-size:20px;
            text-transform: uppercase;
            margin-top:0px;

        }

/****************************************************************************************/
input, textarea, select, button {
    font-size: inherit;
    color: inherit;
    font-family: inherit;
    border: 1px solid #eee;
    width:100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius:4px;
    margin-bottom:10px;
    background-color: #fff;
    -webkit-appearance: none;
    appearance: none;

}

textarea {
    height: 120px;
    resize: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;

}

input[type=submit], button {
    cursor: pointer;
    -webkit-appearance: none;

                background-color:rgba(12,10,37,1);
            color:#fff;
            border:1px solid rgba(12,10,37,1);
}

input[type="checkbox"] {
    width: auto;
    width: 22px;
    height: 22px;
    border:3px #ddd solid;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    float: left;
    margin:0;
    padding:0;
    margin-right:6px;
}

input[type=checkbox]:checked {
   background-size: 15px 15px;
    background-position: 0px 1px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Ctitle%3Ebackground%3C/title%3E%3Crect fill='none' id='canvas_background' height='402' width='582' y='-1' x='-1'/%3E%3C/g%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cpath fill='%23666666' id='svg_1' d='m1,14l4,-4l8,8l14,-14l4,4l-18,18l-12,-12z'/%3E%3C/g%3E%3C/svg%3E");
}

input[type="radio"] {
    width: auto;
    width: 22px;
    height: 22px;
    border:3px #ddd solid;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
float: left;
    margin:0;
    padding:0;
    margin-right:6px;
}

input[type=radio]:checked {
    background-size: 15px 15px;
    background-position: 0px 1px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Ctitle%3Ebackground%3C/title%3E%3Crect fill='none' id='canvas_background' height='402' width='582' y='-1' x='-1'/%3E%3C/g%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cpath fill='%23666666' id='svg_1' d='m1,14l4,-4l8,8l14,-14l4,4l-18,18l-12,-12z'/%3E%3C/g%3E%3C/svg%3E");
}

.button {
    border: 1px var(--button) solid !important;
    background-color: var(--button) !important;
    color:#fff;
    display: inline-block;
    padding:16px;
    width:100%;
    box-sizing: border-box;
    text-decoration: none;
    margin-bottom:10px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.4s;
    text-align:center;
    border-radius: 0;
}

.button:hover {
    background-color: var(--farbe1) !important;
}


#buttonStartscreen
{
    position: relative;
}

#buttonStartscreen[disabled]
{
    background-color: #ccc !important;


}

#buttonStartscreen[disabled]:before{
    content: "Das 3D-Modell wird für Sie geladen...";
    position: absolute;
    top: 0;
    left:0;
    margin-top: -27px;
    color: #666;
    font-weight: normal;
    text-transform: none;

}

/****************************************************************************************/

.sliderContainer {
    height:45px;
    margin-left:12px;
    margin-right:12px;}

.sliderHeader {
    padding-top:10px;
    padding-bottom:10px;
    font-weight: bold;
}

.noUi-value {
    font-size:11px;
}

.noUi-marker-horizontal.noUi-marker-large {
    height: 0px;
}

.noUi-pips-horizontal {

    height: var(--abstand);

}

.noUi-value-horizontal {
    -webkit-transform: translate(-50%, 10%);
    transform: translate(-50%, 10%);
}

.noUi-handle:before, .noUi-handle:after {
    content:  none;

}

.noUi-horizontal .noUi-handle {
    width: 28px;
    height: 28px;
    right: -14px;
    top: -6px;
}

.noUi-connect {
    background: var(--farbe1);
}



/****************************************************************************************/

    .floatright {
        float: right;
        margin-top:0px;
        margin-right:20px;
    }



    .objektfenster .button {
        margin-bottom:0;
        }

.closeButton {
            display: block;
            width:25px;
            height: 25px;
            box-sizing: border-box;
            padding-top:0px;

            position: absolute;
            margin-top:10px;
            right:10px;

}

.closeButton img {
        width:100%;
}

.closeButtonFilter {
    display: none;
}

#filterModalBackground.an .closeButtonFilter {
             display: block;
            width:25px;
            height: 25px;
            box-sizing: border-box;
            padding-top:0px;

            position: absolute;
            margin-top:-20px;
            right:10px;
            z-index: 600;
}

.closeButtonFilter img {
        width:100%;
}

    #filterModalEin {
             display:inline-block;
             padding: 5px;
             padding-left: 25px;
             padding-right: 25px;
             border-radius:20px;
             color: #fff;
             border: 2px var(--farbe1) solid;
             margin-top:20px;
             margin-right:var(--abstand);
             font-weight: bold;
             text-transform: uppercase;
             text-decoration: none;
             background-color: var(--farbe1);
             box-shadow: 1px -1px 5px 5px rgba(255,255,255,0.75);
        vertical-align: bottom;


        }

    .mobilonly {
        display: none;
    }



#overlay{
    position: absolute;
    width:100%;
    height: 100%;

    background-color: #fff;
    z-index: 9000;
}

#overlay .contentseite {
    width:100%;
    height: 100%;

}

#overlay .row, #overlay .wrapper, #overlay .wrapper2 {
    height: 100%;
}

#overlay .column {

    padding:0;

}

.hintergrundbild, .hintergrundbild div {

    height: 100%;
}

.hintergrundbild img {
    object-fit: cover;
    height: 100%;
}

.textbereich {

    display: flex;
    justify-content: center;
    align-items: center;
}

.textbereich .ge-content {
    width:70%;
    margin-top:100px;
    margin-bottom:100px;
}

#overlay p {
    line-height: 1.5;

}

#logo {
    position: absolute;
    top: 60px;
    right: 60px;
    width: 200px;
}

.ohnerand {
    margin-left: calc(var(--abstand) * -1);
    margin-right: calc(var(--abstand) * -1);
}

.ohnerand p {
    /*margin-top:0;*/
    /*margin-bottom:0;*/
}

.ohnerand img {
    /*margin-left: calc(var(--abstand) * -1);*/
    /*margin-right: calc(var(--abstand) * -1);*/

    object-fit: cover;

}

.col-ohnerand {
    padding: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.col-ohnerand p{
    margin:0;
}


.col-ohnerand * {
    height: 100%;
}




.hintergrundfarbe {
    background-color: var(--farbe1);
    color: #fff;
}

.hintergrundfarbe2 {
    background-color: var(--button);
    color: #fff;
}

.projektbutton {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: block;
    background-color: var(--button);
    border: 0;
    /*color: rgba(12,10,37,1);*/
    color:#fff;
    text-decoration: none;
    display: block;
    padding: 10px;
    box-sizing: border-box;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.4s;
}

.projektbutton:hover {
    background-color: var(--farbe1);
    color:#fff;

}

.mfp-container {

}

button.mfp-close {

    right: 3% !important;
    /*top: 20px;*/
    /*z-index: 9000;*/
}


/****************************************************************************************/
/****************************************************************************************/
/****************************************************************************************/

@media only screen and (min-width: 100px)
{





/****************************************************************************************/




        #bodyContainer {
            display: flex;
            height: 100%;


        }


        #iframeApplication {
            width: calc(100vw - 420px);
            height: 100vh;
            box-sizing: border-box;
            display:block;
            order:2;
        }

        #containerInterface{
            position: absolute;
            width:300px;

            left:var(--abstand);
            bottom:var(--abstand);
            background-color: #fff;
            padding:var(--abstand);
        }




/****************************************************************************************/

#containerCompass {
    position: absolute;
    top:var(--abstand);
    right: var(--abstand);
    width:90px;
    height: 90px;


}

#containerCompass img {
    width:90px;
}


/****************************************************************************************/

.mfp-content .contentseite {
    padding:var(--abstand);
    background-color: #fff;
    width: 90%;
    min-width: 500px;
    max-width:1010px;
    margin:var(--abstand);
    margin-left:auto;
    margin-right:auto;
}
/****************************************************************************************/





/****************************************************************************************/


.checkoxenContainer {
       margin-bottom:16px;
}

/****************************************************************************************/
.tabelle {
    width:100%;

}

.hidden {
    display: none !important;
}


/****************************************************************************************/

.auswahlItem {
    display: flex;
    flex-direction: row;        /* Stern links, Text rechts */
    align-items: center;        /* Inhalte vertikal zentrieren */

    padding: 12px 15px;         /* Etwas kompaktere Innenabstände */
    margin-bottom: 8px;         /* Kleinerer Abstand zwischen den Widgets */

    margin-left: 10px;
    margin-right: 10px;

    background-color: #fff;
    border-radius: 6px;         /* Kleinerer Radius für dezentere Ecken */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);  /* Leichter Schatten */
    border: 1px solid #ddd;

    transition: background-color 0.1s ease, box-shadow 0.1s ease, transform 0.1s ease;

    z-index: 1;
}

/* Hover-Effekt */
.auswahlItem:hover {
    background-color: rgba(240, 240, 240, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);  /* Leicht intensiverer Schatten */
    transform: translateY(-3px);                /* Leichtes Anheben */
    cursor: pointer;
}

/* Stern-Icon links positionieren */
.iconAddMerkliste {
    margin-right: 12px;         /* Abstand zwischen Stern und Text */
    font-size: 1.2em;           /* Stern größer darstellen */
    color: #888;                /* Standardfarbe des Sterns */
    transition: color 0.2s ease;
}

.iconAddMerkliste.fett {
    color: gold;                /* Goldener Stern, wenn "gemerkt" */
}

.iconAddMerkliste:hover {
    color: #555;                /* Dunklerer Stern bei Hover */
}

/* Textbereich rechts vom Stern */
.auswahlItem a.div {
    flex-grow: 1;               /* Nimmt den verbleibenden Platz ein */
    text-decoration: none;
    color: inherit;
}

/* Überschrift */
.auswahlItem b {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 4px;         /* Weniger Abstand unter der Überschrift */
    font-size: 1.05em;          /* Leicht kleinere Schriftgröße */
}

/* Deaktivierte Elemente */
.auswahlItem.disabled {
    color: #aaa;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    box-shadow: none;
}

.auswahlItem.disabled:hover {
    background-color: #f9f9f9;
    transform: none;
    box-shadow: none;
    cursor: default;
}

/****************************************************************************************/

#filterContainer {
    max-height:0;
    overflow: hidden;
    transition: all 0.6s;
    position: relative;
}

#filterContainer.an {
    max-height: 600px;

}

.iconAddMerkliste {
    width:24px;
    height: 24px;
    display: block;
    background-image: url(0142-star.svg);
    background-size: cover;
    margin-right:15px;

    /* margin-top:10px; */

}

.iconContainer {
    display: flex;
    align-items: center;     /* Vertikal zentrieren */
    background-color: transparent; /* Optional: Hintergrundfarbe */
}



.objektfensterUe .iconAddMerkliste {
        margin-top:0px;
    }

span.iconAddMerkliste {
    opacity: 0.3;
}

.fett {
    font-weight: bold;
    background-image: url(0142-star_gelb.svg);

}


.objektTable td.spalte1 {
    width: 45%;  /* Fixe Breite für die erste Spalte */
}


/****************************************************************************************/
    html {
        height: 100%;
    }

    body {
        background-color: #efefef;
        height: 100%;
    }

    #interface1 {

        background-color: #fff;
        width:420px;
        display:flex;
        box-sizing: border-box;
        flex-direction: column;
        height: 100%;
        order:1;
    }


    #interface1.eingeklappt {
        width:0px;
        display: none;
    }


    #einausklappen  {
        position: absolute;
        bottom: 10px;
        left: 420px;
        background-color: var(--farbe1);
        color:#fff;
        width:15px;
        height: 15px;
        padding:8px;
        padding-left:5px;
        border-radius: 0px 10px 10px 0px;

    }


    #einausklappen.eingeklappt {
        left:0px;
    }

    #einausklappen img {
        width:100%;
        transform: rotate(90deg);}

    #einausklappen.eingeklappt img {
        width:100%;
        transform: rotate(-90deg);}

    #iframeApplication.eingeklappt {
        width: 100vw;

    }

    #logomodel.eingeklappt {
        left: 30px;
    }

    #footer {
        font-size:10px;
    position: absolute;
    bottom:0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    color:#fff;
    padding:3px;
    padding-left:10px;
        padding-right: 10px;



    }

    #footer a {
        color:#fff;
    }

    #iconleiste {
        position: absolute;
        /*right: var(--abstand);*/
        left: calc(50% + 210px - 130px);
        /*left: 50%;*/
        bottom: 30px;
        background-color: #fff;
        padding:4px;
        padding-left:6px;
        padding-right:6px;
        border-radius: 20px;
    }

    #iconleiste.eingeklappt {
        left: calc(50% - 130px);
    }

    #iconleiste a {
        /*font-size:10px;*/
        text-decoration: none;
        border: 2px #ddd solid;
        display: inline-block;
        padding:4px;
        border-radius:20px;
        padding-left:6px;
        padding-right:6px;


    }

    #iconleiste #modus {

    background-image: url("0888-layers.svg");
        background-repeat: no-repeat;
        /*text-indent: -9999px;*/
        /*width:18px;*/
        padding-left: 30px;
        border: 2px #fff solid;
        background-position: 5px center;

    }

    #iconleiste #infrastruktur {

        background-image: url("0379-map-marker.svg");
        background-repeat: no-repeat;
        /*text-indent: -9999px;*/
        /*width:18px;*/
        padding-left: 30px;
        border: 2px #fff solid;
        background-position: 5px center;

    }

    #iconleiste #resetPosition {
        position: absolute;
        bottom: calc(100% + 6px);    /* 6px Abstand über den beiden anderen Buttons */
        left: 50%;
        transform: translateX(-50%);
            background-color: var(--farbe1);
            /* border: 2px var(--farbe1) solid; */
            /* background-color: #ffb356; */
            border: 3px #fff solid;
            color: #fff;
            background-image: url("reset.svg");
            background-repeat: no-repeat;
        padding-left: 35px;
        padding: 6px 10px 6px 37px;   /* oben/rechts/unten/links */
            background-position: 5px center;
        display: inline-block;        /* sichert die Sichtbarkeit */
        z-index: 10;                  /* liegt über den anderen Icons */
    }

    #iconleiste #modus.an {
        border: 2px var(--farbe1) solid;
        background-image: url("0888-layers_weiss.svg");
    }

    #iconleiste #infrastruktur.an {
        border: 2px var(--farbe1) solid;
        background-image: url("0379-map-marker_weiss.svg");
    }

    #iconleiste a.an {
         background-color: var(--farbe1);
        border: 2px var(--farbe1) solid;
        color:#fff;
    }

    #auswahl {

        height: 100%;
        display:flex;
        box-sizing: border-box;
        flex-direction: column;


    }

    #auswahlListe {

        display:flex;
        flex: 1;
        flex-direction: column;
        /*
        height: 100%;

        box-sizing: border-box;

        */
    }

    #listeAuswahlContainer {


                    overflow: auto;
                    height: 100%;
                    position: relative;

                }

    

    #listeAuswahlContainer2 {


                    overflow: auto;
                    height: 100%;
                    position: absolute;
                    width:100%;
                }


    #listeAuswahl {
        padding-top: 8px;

    }

#buttonContainer {
    border-bottom: 3px #ddd solid;
    display:flex;
}

    .buttonOben {
        width:50%;
        text-align: center;
        box-sizing: border-box;
        display: block;

        background-color: #eee;
        border:0;
        color:rgba(12,10,37,1);
        text-decoration: none;
        display: block;
        padding:10px;
        box-sizing: border-box;
        text-transform: uppercase;
        font-weight: bold;
        transition: all 0.4s;



    }

.buttonOben:hover {
       background-color:var(--farbe1);
       color:#fff;
}

.buttonOben.aktiv {
       background-color:var(--farbe1);
       color:#fff;
}


#AuswahlFilter {
    border-bottom: 2px #ddd solid;
   padding:var(--abstand);
   padding-left:20px;
   padding-right:20px;
   padding-bottom:14px;
   position: relative;
}

#AuswahlFilter h2 {
margin-left:10px;
}

#filterModalBackground.an #AuswahlFilter {
    border-bottom: 3px #fff solid;

}


#filterButtonWeiter {
    margin-top:80px;
    margin-bottom:0;
    background: var(--farbe1);
    display: none;
}

#ergebnisZaehler2 {
    display: none;
}

#filterModalBackground.an #filterButtonWeiter {
    display: block;
}

#filterModalBackground.an #ergebnisZaehler2 {
    display: block;
}

#auswahlListe {
    border-bottom: 3px #ddd solid;

}
/****************************************************************************************/

    #bauteilfilterContainer {
        margin-bottom: 16px;
    }

    #bauteilfilterContainer input[type="radio"] {
        display: none;
    }





    #bauteilfilterContainer label {

        display: inline-block;
        padding: 5px;
        padding-left: 17px;
        padding-right: 17px;
        border-radius: 20px;
        background-color: #fff;

        margin-right: 3px;
        margin-bottom: 5px;

        text-transform: uppercase;
        text-decoration: none;
        cursor: pointer;
        font-size: 10px;
        border: 2px #ddd solid;
        color: #666;
        transition: all 0.5s;



    }

    #bauteilfilterContainer label:hover,
    #bauteilfilterContainer input[type="radio"]:checked + label

    {

        background-color: var(--farbe1);
        border: 2px var(--farbe1) solid;
        color: #fff;
    }

    #bauteilfilter {
        display: inline-block;
    }


/****************************************************************************************/
        #filterModalEinContainer {
             display:none;
        }

            #filterModalBackground.an {
                background:rgba(0,0,0,0.2);
                position: fixed;
                top:0;
                bottom:0;
                left:0;

                right: 0;
                width:100vw;
                min-height:100vh;
                z-index:500;
                display: flex;
                flex-direction: column;
                align-items:  center;

                justify-content: center;
                overflow: auto;

            }
            

            #filterModalContainer {
            }

            #filterModalBackground.an #filterModalContainer{
                   max-width:600px;
                   min-width:480px;
                   padding:var(--abstand);
                   background-color:#fff;
                   position: relative;
            }

            .checkoxenContainer {
                height: 0;
                overflow: hidden;
                transition: all 0.4s;
                display:flex;
                flex-wrap: wrap;
                opacity: 0;

            }

            .label33 {
                width:33%;
            }

            .checkoxenContainer.an {
                height: 70px;
                padding-top:50px;
                opacity: 1;
            }

            .checkoxenContainer label {
                  padding-top:2px;
                  display: inline-block;
            }
/****************************************************************************************/

            #mehrFilter{
                position: absolute;
                border:2px #ddd solid;
                padding:3px;
                padding-left:12px;
                padding-right:12px;
                padding-bottom:3px;
                text-decoration: none;
                background-color: #fff;
                right:var(--abstand);
                margin-top:0px;
                border-radius: 25px;
                font-size:11px;
                color:#ddd;
                opacity: 0;
                transition: all 0.4s;




            }
            #mehrFilter.sichtbar{
                opacity:1;
            }

            #mehrFilter img {
                width: 15px;
                vertical-align: middle;
                padding-top:3px;
            }

            #mehrFilter.an img {
                transform: rotate(180deg);
            }

            #mehrFilter .weniger {
                display:  none;
            }

            #mehrFilter.an .mehr {
                display:  none;
            }

            #mehrFilter.an .weniger {
                display:  inline;
            }


             #mehrFilter span{

              }


            #AuswahlFilter {

                position: relative;
            }
            #filterAufAb {
                position: absolute;
                width: 100%;
                display: block;
                right: var(--abstand);
            }

            #filterAufAb img{
                margin-top:3px;;
                float: right;
            }

            #filterAufAb.an img{
                        transform: rotate(180deg);
                        }

            .ergebnisFilter {
                 width:185px;
                 float: right;
                 margin-top:-6px;
            }

            #topSuche {
                width:90px;

            }
            #sortierung {
                width:90px;
            }

            #auswahlListeUeberschrift {
                padding:var(--abstand);
                padding-bottom:5px;
                border-bottom: 1px #ddd solid;
            }

        /* Auf mobilen Geräten ausblenden (Bildschirme kleiner als 768px) */
        @media (max-width: 768px) {
            #auswahlListeUeberschrift {
                padding:0px;
            }
        }
/****************************************************************************************/
        #merkliste {
            height: 100%;
        }

        #merklisteContainer {
                display:flex;
                flex-direction: column;
        height: 100%;
        align-items: stretch;

        }

        #merkliste1 {
            padding:var(--abstand);
            padding-bottom: 10px;
            border-bottom: 1px #ddd solid;
        }

        #merkliste2 {
            height: 100%;;
            overflow: auto;
            padding-top: 8px;
            flex: 1;
            position:relative;
        }

        #merklisteListe {
            position:  absolute;
            width:100%;
        }

        #merkliste3 {
            padding:var(--abstand);
        }

        .keineTreffer {
            text-align: center;
            font-weight: bold;
            padding:var(--abstand);
            text-transform: uppercase;
            background-color: var(--farbe1);
            color: white
        }

        .iconRemoveMerkliste {
             background-image: url(0822-cross2.svg);
             background-repeat: no-repeat;
             display: block;
             width:22px;
             height: 22px;
             margin-right:var(--abstand);
             margin-right:5px;

        }

/****************************************************************************************/

    #logomodel {
        position: absolute;
        width:120px;
        z-index: 450;
        left: 450px;
        top:15px;
    }
/****************************************************************************************/

#objektfensterBackground {
     display: none;
}



    .objektTable {
        width:100%;
        border-collapse: collapse;
        margin-bottom:10px;

    }

    .objektTable td {
        padding-bottom:5px;
        padding-right:10px;
        vertical-align: top;
    }

    .spalte1 {
        width:120px;
        font-weight:bold;
    }

    .objektTable img {

        max-height:200px;
        margin-top:var(--abstand);
        margin-bottom:var(--abstand);
    }


    .pill {

    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 5px;
    border-radius:25px;
    background-color: #fff;
    color: #666;
    border: #666 solid 2px;
    display: inline-block;
    margin-right:5px;
    margin-bottom:5px;
    }


    .objektfenster h2 {

    }

    .objektfensterUe {
        padding-left:var(--abstand);
        padding-right:var(--abstand);
        padding-top:40px;
        border-bottom: 2px #ddd solid;
    }

    .objektfensterInhalt {
        padding-left:var(--abstand);
        padding-right:10px;

    }

    /* Standardverhalten für mobile Geräte (keine max-height) */
    .objektfensterInhalt {
        max-height: none;
    }

    /* Desktop: max-height auf 80% der Viewport-Höhe setzen */
    @media (min-width: 768px) {
        .objektfensterInhalt {
            max-height: calc(80vh - (80vh - 60vh) * ((100 - 80) / 50));
        }
    }


    /* Standardverhalten für mobile Geräte (keine max-height) */
    .AnfrageTextbereich {
        max-height: none;
    }

    /* Desktop: max-height auf 80% der Viewport-Höhe setzen */
    @media (min-width: 768px) {
        .AnfrageTextbereich {
            max-height: calc(80vh - (80vh - 60vh) * ((100 - 80) / 50));
        }
    }

.buttongrau {
    display: inline-block;
    padding: 5px;
    padding-left: 17px;
    padding-right: 17px;
    border-radius: 20px;
    background-color: var(--farbe1);
    border: 2px var(--farbe1) solid;
    color:#fff;
    margin-right: 3px;
    margin-bottom: 5px;


    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
}

.buttongrau:hover {
    background-color: var(--button) !important;
    border: 2px var(--button) solid;
}

.imgContainer {
    text-align: center;
}

#objektfensterBackground.an {
                background:rgba(0,0,0,0.0);
                position: absolute;
                top:0;
                bottom:0;
                left:0;

                right: 0;
                width:420px;
                height:100vh;
                z-index:500;
                display:block;
                /*
                align-items:  center;

                justify-content: center;
                */


            }

    #objektfensterBackground.eingeklappt {
        width:0;

    }

#objektfensterBackground.an.anfrage {
                width:100%;
                /*position: fixed;*/
                /*overflow-y: auto;*/


            }




#objektfenster {

    position: absolute;

    width: 440px;
    /*height: 500px;*/
    /*background-color: #fff;  */
    z-index: 3000;
    top:var(--abstand);
    left:var(--abstand);
    border: 0px solid #ddd;
    margin-bottom:var(--abstand);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);

}

.objektfenster {
    /*margin-bottom:60px;*/
    background-color: #fff;
}


.anfrage  #objektfenster {
    width: 470px;
}




.anfragefensterText {
    padding-left: var(--abstand);
    padding-right: var(--abstand);
    padding-top: 20px;
    /* border-bottom: 3px #ddd solid; */
}



.schatten {
    box-shadow: 0 6px 6px rgba(0,0,0,0.10);
}

#filterModalBackground.an  #filterAufAb {
        display: none;
    }

#filterModalBackground.an  #filterContainer {
        max-height: none;
    }

#filterModalBackground.an  #mehrFilter {
        opacity:1;
        margin-top: -98px;
    }

       #gallery-1 {

            width:330px;
            height:260px;
            position: relative;
       }
       .rsFullscreenBtn {
           position: absolute;
           background-color: red;
           right:0;
           top:0;
           z-index: 9000;
           width:40px;
           height: 40px;
       }

.fehlermeldung {
    position: absolute;
    background-color: #BD0000;
    color:#fff;
    font-size:12px;

    margin-top:-59px;
    margin-left:10px;
    font-weight: bold;
}

/****************************************************************************************/

}
/****************************************************************************************/
@media only screen and (min-width: 10px) and (max-height: 800px)
{
    #AuswahlFilter {
        display: none;
        position: relative;
    }

    #filterModalBackground.an  #AuswahlFilter {
        display: block;
    }



    #filterModalEinContainer {
        display: block;
        text-align: right;
    }



}
/****************************************************************************************/
/****************************************************************************************/
/****************************************************************************************/
/****************************************************************************************/
/****************************************************************************************/
/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow: hidden;
    position: fixed;
    background: #000000;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
    width: 100%;
  /*height: 100%;*/
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #cccccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #cccccc;
}

.mfp-preloader a:hover {
    color: white;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close, button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 10460;
    -webkit-box-shadow: none;
    box-shadow: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}


.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: white;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100);
}

.mfp-close:active {
    /*top: 1px;*/
}

.mfp-close-btn-in .mfp-close {
    color: #fff;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    color: white;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #cccccc;
    font-size: 12px;
    line-height: 18px;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    filter: alpha(opacity=65);
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid white;
    margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid white;
    margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: black;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444444;
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.mfp-ie7 .mfp-img {
    padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
    padding: 0;
}

.mfp-ie7 .mfp-content {
    padding-top: 44px;
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0;
}

/***************************************************************************************/

/* v1.0.7 */
/* Core RS CSS file. 95% of time you shouldn't change anything here. */
.royalSlider {
	width: 600px;
	height: 400px;
	position: relative;
	direction: ltr;
	touch-action: pan-y pinch-zoom;
}
.royalSlider > * {
	float: left;
}

.rsWebkit3d .rsSlide,
.rsWebkit3d .rsContainer,
.rsWebkit3d .rsThumbs,
.rsWebkit3d .rsPreloader,
.rsWebkit3d img,
.rsWebkit3d .rsOverflow,
.rsWebkit3d .rsBtnCenterer,
.rsWebkit3d .rsAbsoluteEl,
.rsWebkit3d .rsABlock,
.rsWebkit3d .rsLink {
	-webkit-backface-visibility: hidden;
}
.rsFade.rsWebkit3d .rsSlide,
.rsFade.rsWebkit3d img,
.rsFade.rsWebkit3d .rsContainer {
  -webkit-transform: none;
}
.rsOverflow {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	float: left;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
.rsVisibleNearbyWrap {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	left: 0;
	top: 0;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
.rsVisibleNearbyWrap .rsOverflow {
	position: absolute;
	left: 0;
	top: 0;
}
.rsContainer {
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

.rsArrow,
.rsThumbsArrow {
	cursor: pointer;
}

.rsThumb {
	float: left;
	position: relative;
}


.rsArrow,
.rsNav,
.rsThumbsArrow {
	opacity: 1;
	-webkit-transition:opacity 0.3s linear;
	-moz-transition:opacity 0.3s linear;
	-o-transition:opacity 0.3s linear;
	transition:opacity 0.3s linear;
}
.rsHidden {
	opacity: 0;
	visibility: hidden;
	-webkit-transition:visibility 0s linear 0.3s,opacity 0.3s linear;
	-moz-transition:visibility 0s linear 0.3s,opacity 0.3s linear;
	-o-transition:visibility 0s linear 0.3s,opacity 0.3s linear;
	transition:visibility 0s linear 0.3s,opacity 0.3s linear;
}


.rsGCaption {
	width: 100%;
	float: left;
	text-align: center;
}

/* Fullscreen options, very important ^^ */
.royalSlider.rsFullscreen {
	position: fixed !important;
	height: auto !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	z-index: 2147483647 !important;
	top: 0 !important;
	left: 0 !important;
	bottom: 0 !important;
	right: 0 !important;
}

.royalSlider .rsSlide.rsFakePreloader {
	opacity: 1 !important;
	-webkit-transition: 0s;
	-moz-transition: 0s;
	-o-transition:  0s;
	transition:  0s;
	display: none;
}

.rsSlide {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	overflow: hidden;

	height: 100%;
	width: 100%;
}

.royalSlider.rsAutoHeight,
.rsAutoHeight .rsSlide {
	height: auto;
}

.rsContent {
	width: 100%;
	height: 100%;
	position: relative;
}

.rsPreloader {
	position:absolute;
	z-index: 0;
}

.rsNav {
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	user-select: none;
}
.rsNavItem {
	-webkit-tap-highlight-color:rgba(0,0,0,0.25);
}

.rsThumbs {
	cursor: pointer;
	position: relative;
	overflow: hidden;
	float: left;
	z-index: 22;
}
.rsTabs {
	float: left;
	background: none !important;
}
.rsTabs,
.rsThumbs {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}


.rsVideoContainer {
	width: auto;
	height: auto;
	line-height: 0;
	position: relative;
}
.rsVideoFrameHolder {
	position: absolute;
	left: 0;
	top: 0;
	background: #141414;
	opacity: 0;
	-webkit-transition: .3s;
}
.rsVideoFrameHolder.rsVideoActive {
	opacity: 1;
}
.rsVideoContainer iframe,
.rsVideoContainer video,
.rsVideoContainer embed,
.rsVideoContainer .rsVideoObj {
	position: absolute;
	z-index: 50;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
/* ios controls over video bug, shifting video */
.rsVideoContainer.rsIOSVideo iframe,
.rsVideoContainer.rsIOSVideo video,
.rsVideoContainer.rsIOSVideo embed {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-right: 44px;
}

.rsABlock {
	left: 0;
	top: 0;
	position: absolute;
	z-index: 15;

}

img.rsImg {
	max-width: none;
}

.grab-cursor {
	cursor: move;
	cursor: grab;
	cursor: -moz-grab;
	cursor: -webkit-grab;
}

.grabbing-cursor{
	cursor: grabbing;
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
}

.rsNoDrag {
	cursor: auto;
}

.rsLink {
	left:0;
	top:0;
	position:absolute;
	width:100%;
	height:100%;
	display:block;
	z-index: 20;
	background: rgba(0,0,0,0);
}
/* Lightbox und Video*/

.video {
    display: block;
    width: 100%;
    /*padding-bottom: 56.25%;*/
    background-color: #E7E7E7;
    text-align: center;
    padding-top:30px;
    padding-bottom:30px;

}


.video_content {
    width: 100%;

}

.video_content embed {
    width: 500px;
    height: 300px;
}

.video_content {
}

.yt {
    position: relative;
    padding-bottom: 56.25%;
 /* 16:9 */
    padding-top: 25px;
    height: 0;
    width: 100%;
}

.yt iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video_lightbox {
    width: 500px;
    margin: 0 auto;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.mfp-content_gal {
    height: 100%;
}

.sliderContainer1 {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.sliderInLightbox {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.sliderContainer1 {
}

.sliderInLightbox img {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}

.lbprev, .lbnext {
    color: #fff;
    text-decoration: none;
}

.lb1 {
    width: auto;
    cursor: default;
}

.lb1 .rsImg {
    cursor: move;
}

.lb2 {
    width: 320px;
    margin: 0 auto;
    text-align: center;
}

@media screen and (max-width: 760px) {
    .sliderContainer1,
    .sliderInLightbox {
    }
}

.video3 {
    position: relative;
    padding-bottom: 0;
 /* 16:9 */
    padding-top: 0px;
    width: 720px;
    height: 404px;
    margin: 0 auto;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.video3 video, .video3 embed {
    height: 100%;
    width: 100%;
}

.video3 embed {
    background-color: #000;
}

@media only screen and (min-width: 0px) and (max-width: 990px) {
    .video3 {
        position: relative;
        padding-bottom: 56.25%;
 /* 16:9 */
        padding-top: 25px;
        height: 0;
        width: auto;
    }

    .video3 iframe, .video3 video, .video3 embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .video_content {
        width: 100%;
    }
}

/****************************************************************************************/
/******************************
*
*  RoyalSlider Default Inverted Skin
*
*    1. Arrows
*    2. Bullets
*    3. Thumbnails
*    4. Tabs
*    5. Fullscreen button
*    6. Play/close video button
*    7. Preloader
*    8. Caption
*
*  Sprite: 'rs-default-inverted.png'
*  Feel free to edit anything
*  If you don't some part - just delete it
*
******************************/


/* Background */
.rsDefaultInv,
.rsDefaultInv .rsOverflow,
.rsDefaultInv .rsSlide,
.rsDefaultInv .rsVideoFrameHolder,
.rsDefaultInv .rsThumbs {
	background: transparent;
	color: #666;
}


/***************
*
*  1. Arrows
*
****************/

.rsDefaultInv .rsArrow {
	height: 100%;
	width: 44px;
	position: absolute;
	display: block;
	cursor: pointer;
	z-index: 21;
}
.rsDefaultInv.rsVer .rsArrow {
	width: 100%;
	height: 44px;

}
.rsDefaultInv.rsVer .rsArrowLeft { top: 0; left: 0; }
.rsDefaultInv.rsVer .rsArrowRight { bottom: 0;  left: 0; }

.rsDefaultInv.rsHor .rsArrowLeft { left: 0; top: 0; }
.rsDefaultInv.rsHor .rsArrowRight { right: 0; top:0; }

.rsDefaultInv .rsArrowIcn {
	width: 32px;
	height: 32px;
	top: 50%;
	left: 50%;
	margin-top:-16px;
	margin-left: -16px;

	position: absolute;
	cursor: pointer;
	background: url('rs-default-inverted.png');

	background-color: #FFF;
	background-color: rgba(255,255,255, .75);
	*background-color: #FFF;

	border-radius: 2px;
}
.rsDefaultInv .rsArrowIcn:hover {
	background-color: rgba(255,255,255,0.9);
}

.rsDefaultInv.rsHor .rsArrowLeft .rsArrowIcn { background-position: -64px -32px; }
.rsDefaultInv.rsHor .rsArrowRight .rsArrowIcn { background-position: -64px -64px; }

.rsDefaultInv.rsVer .rsArrowLeft .rsArrowIcn { background-position: -96px -32px; }
.rsDefaultInv.rsVer .rsArrowRight .rsArrowIcn { background-position: -96px -64px; }

.rsDefaultInv .rsArrowDisabled .rsArrowIcn { filter: alpha(opacity=20); opacity: .2; *display: none; }


/***************
*
*  2. Bullets
*
****************/

.rsDefaultInv .rsBullets {
	position: relative;
	z-index: 35;
	padding-top: 4px;
	width: 100%;
	height: auto;
	margin: 0 auto;

	text-align: center;
	line-height: 5px;
	overflow: hidden;
}
.rsDefaultInv .rsBullet {
	width: 5px;
	height: 5px;
	display: inline-block;
	*display:inline;
	*zoom:1;
	padding: 6px;
}
.rsDefaultInv .rsBullet span {
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #BBB;
}
.rsDefaultInv .rsBullet.rsNavSelected span {
	background-color: #000;
}





/***************
*
*  3. Thumbnails
*
****************/

.rsDefaultInv .rsThumbsHor {
	width: 100%;
	height: 72px;
}
.rsDefaultInv .rsThumbsVer {
	width: 96px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.rsDefaultInv.rsWithThumbsHor .rsThumbsContainer {
	position: relative;
	height: 100%;
}
.rsDefaultInv.rsWithThumbsVer .rsThumbsContainer {
	position: relative;
	width: 100%;
}
.rsDefaultInv .rsThumb {
	float: left;
	overflow: hidden;
	width: 96px;
	height: 72px;
}
.rsDefaultInv .rsThumb img {
	width: 100%;
	height: 100%;
}
.rsDefaultInv .rsThumb.rsNavSelected {
	background: #FFF;
}
.rsDefaultInv .rsThumb.rsNavSelected img {
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.rsDefaultInv .rsTmb {
	display: block;
}

/* Thumbnails with text */
.rsDefaultInv .rsTmb h5 {
	font-size: 16px;
	margin: 0;
	padding: 0;
	line-height: 20px;
}
.rsDefaultInv .rsTmb span {
	color: #DDD;
	margin: 0;
	padding: 0;
	font-size: 13px;
	line-height: 18px;
}



/* Thumbnails arrow icons */
.rsDefaultInv .rsThumbsArrow {
	height: 100%;
	width: 20px;
	position: absolute;
	display: block;
	cursor: pointer;
	z-index: 21;
	background: #FFF;
	background: rgba(255,255,255,0.75);
}
.rsDefaultInv .rsThumbsArrow:hover {
	background: rgba(255,255,255,0.9);
}
.rsDefaultInv.rsWithThumbsVer .rsThumbsArrow {
	width: 100%;
	height: 20px;
}
.rsDefaultInv.rsWithThumbsVer .rsThumbsArrowLeft { top: 0; left: 0; }
.rsDefaultInv.rsWithThumbsVer .rsThumbsArrowRight { bottom: 0;  left: 0; }

.rsDefaultInv.rsWithThumbsHor .rsThumbsArrowLeft { left: 0; top: 0; }
.rsDefaultInv.rsWithThumbsHor .rsThumbsArrowRight { right: 0; top:0; }

.rsDefaultInv .rsThumbsArrowIcn {
	width: 16px;
	height: 16px;
	top: 50%;
	left: 50%;
	margin-top:-8px;
	margin-left: -8px;
	position: absolute;
	cursor: pointer;
	background: url('rs-default-inverted.png');
}

.rsDefaultInv.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn { background-position: -128px -32px; }
.rsDefaultInv.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn { background-position: -128px -48px; }

.rsDefaultInv.rsWithThumbsVer .rsThumbsArrowLeft .rsThumbsArrowIcn { background-position: -144px -32px; }
.rsDefaultInv.rsWithThumbsVer .rsThumbsArrowRight .rsThumbsArrowIcn { background-position: -144px -48px; }

.rsDefaultInv .rsThumbsArrowDisabled { display: none !important; }

/* Thumbnails resizing on smaller screens */
@media screen and (min-width: 0px) and (max-width: 800px) {
	.rsDefaultInv .rsThumb {
		width: 59px;
		height: 44px;
	}
	.rsDefaultInv .rsThumbsHor {
		height: 44px;
	}
	.rsDefaultInv .rsThumbsVer {
		width: 59px;
	}
}




/***************
*
*  4. Tabs
*
****************/

.rsDefaultInv .rsTabs {
	width: 100%;
	height: auto;
	margin: 0 auto;
	text-align:center;
	overflow: hidden; padding-top: 12px; position: relative;
}
.rsDefaultInv .rsTab {
	display: inline-block;
	cursor: pointer;
	text-align: center;
	height: auto;
	width: auto;
	color: #333;
	padding: 5px 13px 6px;
	min-width: 72px;
	border: 1px solid #D9D9DD;
	border-right: 1px solid #f5f5f5;
	text-decoration: none;

	background-color: #FFF;
	background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4);
	background-image:    -moz-linear-gradient(top, #fefefe, #f4f4f4);
	background-image:         linear-gradient(to bottom, #fefefe, #f4f4f4);

	-webkit-box-shadow: inset 1px 0 0 #fff;
	box-shadow: inset 1px 0 0 #fff;

	*display:inline;
	*zoom:1;
}
.rsDefaultInv .rsTab:first-child {
	-webkit-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.rsDefaultInv .rsTab:last-child {
	-webkit-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;

	border-right:  1px solid #cfcfcf;
}
.rsDefaultInv .rsTab:active {
	border: 1px solid #D9D9DD;
	background-color: #f4f4f4;
	box-shadow:  0 1px 4px rgba(0, 0, 0, 0.2) inset;
}
.rsDefaultInv .rsTab.rsNavSelected {
	color: #FFF;
	border: 1px solid #999;
	text-shadow: 1px 1px #838383;
	box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
	background: #ACACAC;
	background-image: -webkit-linear-gradient(top, #ACACAC, #BBB);
	background-image: -moz-llinear-gradient(top, #ACACAC, #BBB);
	background-image: linear-gradient(to bottom, #ACACAC, #BBB);
}





/***************
*
*  5. Fullscreen button
*
****************/

.rsDefaultInv .rsFullscreenBtn {
	right: 0;
	top: 0;
	width: 44px;
	height: 44px;
	z-index: 22;
	display: block;
	position: absolute;
	cursor: pointer;

}
.rsDefaultInv .rsFullscreenIcn {
	display: block;
	margin: 6px;
	width: 32px;
	height: 32px;

	background: url('rs-default-inverted.png') 0 0;
	background-color: #FFF;
	background-color: rgba(255,255,255,0.75);
	*background-color: #FFF;
	border-radius: 2px;

}
.rsDefaultInv .rsFullscreenIcn:hover {
	background-color: rgba(255,255,255,0.9);
}
.rsDefaultInv.rsFullscreen .rsFullscreenIcn {
	background-position: -32px 0;
}





/***************
*
*  6. Play/close video button
*
****************/

.rsDefaultInv .rsPlayBtn {
	-webkit-tap-highlight-color:rgba(0,0,0,0.3);
	width:64px;
	height:64px;
	margin-left:-32px;
	margin-top:-32px;
	cursor: pointer;
}
.rsDefaultInv .rsPlayBtnIcon {
	width:64px;
	display:block;
	height:64px;
	-webkit-border-radius: 4px;
	border-radius: 4px;

	-webkit-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;

	background:url(rs-default-inverted.png) no-repeat 0 -32px;
	background-color: #FFF;
	background-color: rgba(255,255,255,0.75);
	*background-color: #FFF;
}
.rsDefaultInv .rsPlayBtn:hover .rsPlayBtnIcon {
	background-color: rgba(255,255,255,0.9);
}
.rsDefaultInv .rsBtnCenterer {
	position:absolute;
	left:50%;
	top:50%;
	width: 20px;
	height: 20px;
}
.rsDefaultInv .rsCloseVideoBtn {
	right: 0;
	top: 0;
	width: 44px;
	height: 44px;
	z-index: 500;
	position: absolute;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);

}
.rsDefaultInv .rsCloseVideoBtn.rsiOSBtn {
	top: -38px;
	right: -6px;
}

.rsDefaultInv .rsCloseVideoIcn {
	margin: 6px;
	width: 32px;
	height: 32px;
	background: url('rs-default-inverted.png') -64px 0;
	background-color: #FFF;
	background-color: rgba(255,255,255,0.75);
	*background-color: #FFF;
}
.rsDefaultInv .rsCloseVideoIcn:hover {
	background-color: rgba(255,255,255,0.9);
}



/***************
*
*  7. Preloader
*
****************/

.rsDefaultInv .rsPreloader {
	width:20px;
	height:20px;

	left:50%;
	top:50%;
	margin-left:-10px;
	margin-top:-10px;
}




/***************
*
*  8. Global caption
*
****************/
.rsDefaultInv .rsGCaption {
	position: absolute;
	float: none;
	bottom: 6px;
	left: 6px;
	text-align: left;

	background: #FFF;
    background: rgba(255,255,255, 0.75);

	color: #000;
	padding: 2px 8px;
	width: auto;
	font-size: 12px;
	border-radius: 2px;
}


/****************************************************************************************/

button.mfp-close {
    position: fixed;
    right:30px;
    top:20px;
    background-color: rgba(0,0,0,0.8);
}



#landscape {
display: none;
}



/****************************************************************************************/
/* Raster */



.row {
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 40px;
}


.row-padding-top-0 { padding-top:0px;}
.row-padding-top-1 { padding-top:20px;}
.row-padding-top-2 { padding-top:40px;}
.row-padding-top-3 { padding-top:60px;}

.row-padding-bottom-0 { padding-bottom:0px;}
.row-padding-bottom-1 { padding-bottom:20px;}
.row-padding-bottom-2 { padding-bottom:40px;}
.row-padding-bottom-3 { padding-bottom:60px;}

.wrapper {
    width: 970px;
    margin: 0 auto;
}

.wrapper .wrapper {width:100%;}

.wrapper2 {
    margin-left: -20px;
    margin-right: -20px;
    display: flex;
    /*align-items: center;*/
    flex-wrap: wrap;
}


.column {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-size: cover;
}

.row-padding-vert-0 .column {
    padding-left: 0px;
    padding-right: 0px;
}

.row-padding-vert-1 .column {
    padding-left: 10px;
    padding-right: 10px;
}

.row-padding-vert-2 .column {
    padding-left: 20px;
    padding-right: 20px;
}

.row-padding-vert-3 .column {
    padding-left: 40px;
    padding-right: 40px;
}



.bilder .column {
    padding: 0;
}



/***************************************************************************************/


.col-md-1 {
    width: 8.3333%;
}
.col-md-2 {
    width: 16.6666%;
}
.col-md-3 {
    width: 25%;
}
.col-md-4 {
    width: 33.3333%;
}
.col-md-5 {
    width: 41.6666%;
}
.col-md-6 {
    width: 50%;
}
.col-md-7 {
    width: 58.3333%;
}
.col-md-8 {
    width: 66.6666%;
}
.col-md-9 {
    width: 75%;
}
.col-md-10 {
    width: 83.3333%;
}
.col-md-11 {
    width: 91.6666%;
}
.col-md-12 {
    width: 100%;
}


.margin-left-md-1 {
    margin-left: 8.3333%;
}
.margin-left-md-2 {
    margin-left: 16.6666%;
}
.margin-left-md-3 {
    margin-left: 25%;
}
.margin-left-md-4 {
    margin-left: 33.3333%;
}
.margin-left-md-5 {
    margin-left: 41.6666%;
}
.margin-left-md-6 {
    margin-left: 50%;
}
.margin-left-md-7 {
    margin-left: 58.3333%;
}
.margin-left-md-8 {
    margin-left: 66.6666%;
}
.margin-left-md-9 {
    margin-left: 75%;
}
.margin-left-md-10 {
    margin-left: 83.3333%;
}
.margin-left-md-11 {
    margin-left: 91.6666%;
}
.margin-left-md-12 {
    margin-left: 100%;
}

.margin-right-md-1 {
    margin-right: 8.3333%;
}
.margin-right-md-2 {
    margin-right: 16.6666%;
}
.margin-right-md-3 {
    margin-right: 25%;
}
.margin-right-md-4 {
    margin-right: 33.3333%;
}
.margin-right-md-5 {
    margin-right: 41.6666%;
}
.margin-right-md-6 {
    margin-right: 50%;
}
.margin-right-md-7 {
    margin-right: 58.3333%;
}
.margin-right-md-8 {
    margin-right: 66.6666%;
}
.margin-right-md-9 {
    margin-right: 75%;
}
.margin-right-md-10 {
    margin-right: 83.3333%;
}
.margin-right-md-11 {
    margin-right: 91.6666%;
}
.margin-right-md-12 {
    margin-right: 100%;
}


.align-hor-left {
    text-align: left;
}

.align-hor-center {
    text-align: center;
}

.align-hor-right {
    text-align: right;
}


.align-vert-top {
    align-self: flex-start;
}
.align-vert-center {
    align-self: center;
}
.align-vert-bottom {
    align-self: flex-end;
}


.row-wrapper-left .wrapper {
    margin-left: 20px;
}

.row-wrapper-center .wrapper {
    margin-left: auto;
    margin-right: auto;
}

.row-wrapper-right .wrapper {
    margin-right: 20px;
}

.row-wrapper-100 .wrapper, .breit .wrapper {

    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;

}

/**********************************************************************************************************************/

.ge-content a {
    word-break: break-word;
}

.ge-content img {
    max-width: 100%;

    vertical-align: bottom;
}


.ge-editing .column {
    height: auto !important;
}

.center {
    text-align: center;
}

.clearer {
    clear: both;
}

.left {
    text-align: left;
}


.right {
    text-align: right;
}


.nomobile {
    display: block;
}

.nurmobile, .nurmob {
    display: none;
}


.nurmobile320 {
    display: none;
}

/**********************************************************************************************************************/

.album {
    list-style: none;
    margin: 0;
    padding: 0;
}

.album li {
    margin: 0;
    padding: 0;
    display: block;
    float: left;
}

.album li a {
    display: block;
    width: 200px;
    height: 150px;
    overflow: hidden;
    margin: 20px;
    padding: 0;
    text-decoration: none;
}

.album li img {
    vertical-align: top;
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
}


/**********************************************************************************************************************/

#map {
    height: 400px;
}



#map {
    height: 400px;
}


.map {

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ddd;
    height: 400px;


}

.mapconsent {

    text-align:center;
    padding-left:20px;
    padding-right:20px;

}

.mapconsent img {
    opacity: 0.5;
    width:100px;
    margin-top:20px;
    margin-bottom:20px;
}


.albumtext {
    font-size:16px; text-decoration: none; text-align: center; position:absolute; margin-top:0px; background-color: #fff;
    width:311px; opacity: 0.8;
}

.align-left {float:left; margin-right:20px; margin-bottom:10px;}
.align-right {float:right; margin-left:20px; margin-bottom:10px;}


/**********************************************************************************************************************/









/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    right: 30px;
    bottom: 30px;
    max-width: 375px;
    padding: 20px;
    border-radius: 2px;
    border: 1px solid #F4F4F4;
    box-shadow: 0 6px 6px rgba(0,0,0,0.10);
    background-color: #fdfdfd;
    z-index: 90000;
    line-height: 1.5;


}
#gdpr-cookie-message h4 {


    margin-bottom: 10px;
    margin-top:0;
    font-size:20px;
    font-weight: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
#gdpr-cookie-message h5 {


    margin-bottom: 10px;
    font-size: 18px;
}
#gdpr-cookie-message p, #gdpr-cookie-message ul {


}

#gdpr-cookie-message ul {

    margin:0; padding:0;
}
#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}
#gdpr-cookie-message li {
    width: 100%;
    display: inline-block;
    padding-top:5px;
    bottom:5px;
}
#gdpr-cookie-message a {

    text-decoration: none;
    font-weight:bold;
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message a:hover {

    border-bottom-color: #ddd;
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background:  var(--button);
    color: white;

    padding: 7px;
    border-radius: 1px;

    cursor: pointer;
    transition: all 0.3s ease-in;
    margin-bottom:5px;
    font-family: inherit;
    font-size:inherit;
    margin:3px;
}
#gdpr-cookie-message button:hover {

}
button#gdpr-cookie-advanced {
    background: white;
    color: #383E42;
}
#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}
#gdpr-cookie-message input[type="checkbox"] {


    margin-right: 10px;


}

input[type="checkbox"]:disabled {
    opacity: 0.5;
}

.filtertext.an:after {
    content: "";
    display: block;
    position: absolute;
    width:14px;
    height:14px;
    background-color: #CF4D54;
    border-radius: 50%;
    margin-top:-27px;
    margin-left: 67px;

}

#filterModalEin.an:after{
    margin-top:-31px;
    margin-left: 58px;
}

#filterModalBackground.an .filtertext.an:after{
    display: none;
}


@media only screen and (max-width: 480px)
{

    #gdpr-cookie-message {

        right: 15px;
        left: 15px;
        bottom: 15px;



    }


}

@media only screen and (max-width: 960px) {


    #overlay{

        height: auto;
        min-height: 100%;

    }


    #overlay #logo {
        width: 80px;
        background-color: #fff;
        padding: 10px;
        top: 10px;
        right: 10px;
    }

    .hintergrundbild, .hintergrundbild div {
        height: auto;
        height: 200px;
        overflow: hidden;
    }

    .hintergrundbild img {
        width: 100%;
        height: auto;
    }

    .textbereich .ge-content {
        width: 90%;
        margin-top: 0px;
    }




}


@media only screen and (max-height: 920px) {
    #overlay #logo {
        width: 120px;
        background-color: #fff;
        padding: 10px;
        top: 15px;
        right: 15px;
    }

}


.sliderklein {
    width: 100%;
}

.slidergalerie {
    width: 100%;
}

.contentseite table{
    border-collapse: collapse;
    width: 100%;
}

.contentseite table td{
    padding:5px;
    border-bottom:1px #ddd solid;
}

.rsContent img {
    max-width: none;
}
/***************************************************************************************************/

#mousetipp {
    position: absolute;
    z-index: 10000;
    background-color: rgba(255, 255, 255, 0.9);

    padding: 20px;

    border-radius: 20px;
    display: none;

    /* Dynamische Breite */
    width: auto;
    min-width: 200px;    /* Minimale Breite (optional) */
    max-width: 400px;    /* Maximale Breite (optional) */

    box-sizing: border-box;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.10);

}

#mousetipp.an {
    display: block;
}

#mousetipp b {
    text-transform: uppercase;
    font-size: 1.15em;
    display: inline-block;
    margin-bottom:4px;
}

.htmlContainer figure {
    margin: 0;
    padding: 0;
}

.htmlContainer img {
    max-width: 100%;
    max-height: none;
    height: auto;

}





