/**** VARIABLES ****/
:root {
    --side-spacing-mobile: 5%;
    --side-spacing-desktop: 5%;
    --vert-spacing-mobile: 35px;
    --vert-spacing-desktop: 50px;

    /* colors */
    --white: #ffffff;
}

/**** VARIABLES END  ****/

html,
body {
    height: 100%;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    background-color: #EEE;
}

/****  ****/
/**** END  ****/

/**** GLOBALS ****/

.img-full {
    width: 100%;
    height: auto;
}

@media (min-width: 992px) {
}

/**** END GLOBALS ****/

/**** Lightbox ****/
/* LIGHTBOX */

#lightbox {
    height: 100%;
    position: fixed;
    top: -100%;
    transition: top .85s;
    width: 100%;
    z-index: 3;
}

#lightbox>span {
    background-color: rgba(35, 35, 35, .8);
    cursor: pointer;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

#lightbox>span span {
    color: #fff;
    font-size: 3.6em;
    line-height: .4em;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
}

#lightbox div {
    box-shadow: 0 8px 15px 0 #000;
    margin: -120px auto 0;
    max-height: 80%;
    overflow: auto;
    position: relative;
    transform: rotateX(90deg) translateY(-160px);
    transition: .24s;
    width: 88%;
}

#lightbox img {
    display: block;
    width: 100%;
    background: white;
    padding: 15px;
}

#lightbox.on {
    top: 0;
}

#lightbox.on div {
    margin-top: 50px;
    transition: .8s ease-out .32s;
    transform: rotateX(0deg) translateY(0px);
}

.lightbox {
    cursor: pointer;
}

/**** END Lightbox ****/

.storymap {
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.storymap-iframe {
    width: 100vw;
    height: 100vh;
}