/* ************************************************************************
   Galerie
*/

a.galerie {
    cursor:             pointer;
}

.gallery_container {
    position:           fixed;
    display:            none;
    top:                0;
    bottom:             0;
    right:              0;
    left:               0;
    z-index:            200;
    background:         rgba(0,0,0,0.5);
}

.gallery_columns {
    position:           absolute;
    top:                0;
    bottom:             0;
    left:               0;
    right:              0;
    margin:             auto;
    width:              250px;
    height:             250px;
}

.gallery {
    position:           absolute;
    top:                25px;
    bottom:             0;
    left:               0;
    right:              0;
    padding:            10px;
    border:             1px solid black;
    box-shadow:         3px 3px 4px #000000;
    background:         #ffffff;
    overflow:           hidden;
}

.gallery_container .gallery img {
    position:           absolute;
    left:               0;
    right:              0;
    margin:             auto;
    
}

.gallery_loading {
    position:           absolute;
    display:            none;
    top:                0;
    bottom:             0;
    left:               0;
    right:              0;
    background:         rgba(0,0,0,0.5) url(../../img/galerie_bild_laden.gif) center center no-repeat;
}

.gallery_container .close_gallery {
    display:            inline-block;
    position:           absolute;
    top:                0;
    right:              0;
    height:             24px;
    width:              24px;
    background:         url(../../img/icons/galerie_schliessen.png) center center no-repeat;
    cursor:             pointer;
}

.gallery_container #prev,
.gallery_container #next {
    display:            inline-block;
    position:           relative;
    top:                0px;
    height:             24px;
    width:              24px;
    cursor:             pointer;
}

.gallery_container #prev {
    background:         url(../../img/icons/galerie_vorher.png) center center no-repeat;
}
.gallery_container #next {
    background:         url(../../img/icons/galerie_nachher.png) center center no-repeat;
}
