 .jb_tile_container {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.jb_tile_group {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    flex: 0 1 auto;
}

.jb_tile {
    position: relative;
    display: inline-block;
    color: #FFFFFF;
    font-weight: bold;
    padding: 0.5em;
    flex: 0 1 auto;
}

    .jb_tile > a {
        color: #FFFFFF;
        font-weight: bold;
    }

	.jb_tile > a:hover {
            color: yellow;
            font-weight: bold;
        }

.jb_tile_overlay {
    position: absolute;
    transition: all .9s ease;
    opacity: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 0;
    height: 0;
    top: 0;
    left: 0;
}

.jb_tile:hover .jb_tile_overlay {
    opacity: 1;
    height: 100%;
    width: 100%;
}

.jb_tile_text {
    color: white;
    font-family: sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.jb_figure,
.jb_figcaption {
    margin: 0;
    padding: 0;
}

.jb_figure {
    position: relative;
    background: white;
    overflow: hidden;
    display: inline-block;
}

    .jb_figure img {
        display: block;
        width: 100%;
    }

.jb_figcaption {
    position: absolute;
    bottom: 0em;
    width: 100%;
    background: black;
    color: white;
    opacity: 0.5;
    text-align: center;
}

.jb_sticker {
    position: absolute;
    float: right;
    z-index: 115;
    overflow: hidden visible;
    top: 4em;
    right: 3em;
    height: 12em;
    width: 16em;
    padding: 1em;
    background: rgba(255, 255, 204,0.9); /* Post-It-Gelb  rgba(255, 255, 204,0.9)*/
    /* Firefox */
    -moz-box-shadow: 5px 5px 7px rgba(33,33,33,1);
    /* Safari+Chrome */
    -webkit-box-shadow: 5px 5px 7px rgba(33,33,33,.7);
    /* Die anderen */
    box-shadow: 5px 5px 7px rgba(33,33,33,.7);
	
}

/*///////////////////////////////////////////
// Leaflet
///////////////////////////////////////////*/

#leafmap1 {
	position: absolute;
	top: 0;	left: 0; bottom: 0; right: 0;
	border: 1px solid #AAA;
	z-index: 2;
}

.map-container{
	width: 100%; 
	padding-top:100%;
	position: relative;
    display: inline-block;	
}       


       
