/*=================================GENERAL================================*/
/*=================================GENERAL================================*/
body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background: black;
    /* Canvas übernimmt den Farbverlauf */
    position: relative;
    /* wichtig für z-Index Steuerung */
}

/* Canvas für Hintergrund */
#gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    /* liegt hinter allem anderen */
    display: block;
}


.paddingNull {
    padding: 0;
    margin: 0;
}

#overflowWrapperMobile {
    overflow: hidden;
    position: relative;
    width: 100vw;
    background-size: auto 100%;
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
}

/*#overflowWrapperMobile {
    overflow: hidden;
    position: relative;
    width: 100vw;
    background-image: url("../images/pattern/kranich.jpg");
    background-size: 200px;
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
}*/

#loader1 {
    position: absolute;
    z-index: 13;
    display: block;
    left: 50%;
    transform: translate(-50%);
    /*box-shadow: 1px 3px 8px rgba(0.5, 0, 0, 0.5);*/
}

#introVideo {
    position: absolute;
    z-index: 12;
    display: none;
    left: 50%;
    transform: translate(-50%);
    /*box-shadow: 1px 3px 8px rgba(0.5, 0, 0, 0.5);*/
}

#loopVideo {
    position: absolute;
    z-index: 11;
    display: none;
    left: 50%;
    transform: translate(-50%);
    /*box-shadow: 1px 3px 8px rgba(0.5, 0, 0, 0.5);*/
}

#overlay {
    position: absolute;
    z-index: 20;
    display: block;
    left: 50%;
    transform: translate(-50%);
    height: 100%;
    /*box-shadow: 1px 3px 8px rgba(0.5, 0, 0, 0.5);*/
}

#gifHider {
    position: absolute;
    z-index: 60;
    display: block;
    left: 50%;
    transform: translate(-50%);
    pointer-events: none;
}

#overlayMap {
    z-index: 20;
}

#gifDiv1 {
    position: absolute;
    left: -200px;
    color: aquamarine;
    z-index: 50;
}


.imageShoji {
    position: absolute;
    top: 0;
    height: 100vh;
    transition: transform 15s;
    z-index: 60;
}

#left-image {
    left: 50%;
    transform: translateX(-35vh);
    height: 100%;
    position: fixed;
    /* linkes Bild leicht links der Mitte */
}

#right-image {
    left: 50%;
    height: 100%;
    transform: translateX(0);
    position: fixed;
    /* rechtes Bild direkt an der Mitte */
}

#left-image2 {
    left: 50%;
    transform: translateX(-70vh);
    height: 100%;
    position: fixed;
    /* linkes Bild leicht links der Mitte */
}

#right-image2 {
    left: 50%;
    height: 100%;
    transform: translateX(35vh);
    position: fixed;
    /* rechtes Bild direkt an der Mitte */
}

#left-image3 {
    left: 50%;
    transform: translateX(-105vh);
    height: 100%;
    position: fixed;
    /* linkes Bild leicht links der Mitte */
}

#right-image3 {
    left: 50%;
    height: 100%;
    transform: translateX(70vh);
    position: fixed;
    /* rechtes Bild direkt an der Mitte */
}





/*==========GIFS=============
.bewegt{
    z-index: 30;
    position:absolute;
}

.click-zoom input[type=checkbox] {
    display: none;
}
  
.click-zoom img {
    margin: 100px;
    transition: transform 0.25s ease;
    cursor: zoom-in;
}
  
.click-zoom input[type=checkbox]:checked~img {
    transform: scale(2);
    cursor: zoom-out;
}
/*
/*=================================MEDIAQUERIES================================*/

/*@media only screen and (min-width:1440px){
    #loader1{
        width:1440px;
    }
    #overlay{
        width:1440px;
    }
    #introVideo{
        width:1440px;
    }
    #loopVideo{
        width:1440px;
    }
}
/*@media only screen and (max-width:720px){
    #introVideo{
        width: 720px;
    }
}
*/