.highline {
    line-height: 1.5em;
}

/*      Home         */

.generic_content {
        padding:24px;
        border-radius: 5px;
        background-color:#ffe7c3;
        box-shadow: 2px 3px 16px 0px rgba(100, 50, 0, 0.2);
    }
.generic_content h1 {
    font-size:140%;
}


/*      Kontakt      */

.kontakt_blockContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.kontakt_blockContainer > div {
    display:inline-block;
}
.kontakt_hoverBox {
    margin-bottom:20px;
    padding:20px;
    background-color:#ffe7c3;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
    .kontakt_hoverBox:hover {
      box-shadow: 0 6px 12px rgba(0,0,0,0.18), 0 4px 4px rgba(0,0,0,0.22);
    }
.kontakt_hoverBox > div {
    font-weight: bold;
    margin-bottom:0.4em;
}


/*      Fotos        */

.hide_overflow {
    overflow: hidden;
}
.fotos_content {
    display: -webkit-flex; /* Safari */
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    display: flex;   
    flex-wrap: wrap;
    justify-content: center;
}
    .fotos_content > div {
        background: white;
        margin:6px;
        width:100px; height:100px;
        cursor: pointer;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
#bilder_overlay {
    z-index: 1;
    width: 100%;
    height: 100%;
    position:fixed;
    left:0px;
    top:0px;
}
    .show{
        display:block;
    }
    .hide{
        display:none;
    }
    .x {
        background-color: rgba(255, 255, 255, 0.7);
        width: 2em;height:2em;
        font-size: 1em; line-height: 1.9em;
        text-align: center;
        border-radius: 50%;
        position: fixed;
        right:20px;
        top:20px;
        z-index:1;
        border:2px black solid;
        cursor: pointer;
    }
    #bilder_overlay > #bilder_overlay_image {

        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;

        display: block;
        position:absolute;
        height:auto;
        bottom:0;
        top:0;
        left:0;
        right:0;
        margin: 10%;
    }
    @media (max-width: 450px) {
        #bilder_overlay > #bilder_overlay_image {
            min-width: initial;
            margin: 4px;
        }
    }


/*      speisekarte  */


.speisekarte img {
    width:100%;
    cursor: pointer;
}

#speisekarte_overlay {
    z-index: 1;
    width: 100%;
    height: 100%;
    position:fixed;
    left:0px;
    top:0px;
}

#scrollcard {
    width:100%;
    height:100%;
    /*overflow:scroll;*/
}



/*      Impressum    */

.impressum_content {
    text-align: center;
    padding: 42px 0px;
    font-weight:bold;
}