#galleryPopup {
    position: fixed;
    z-index: 999999;
    width: 100%;
    height: 100%;
    background-color: rgba(150, 150, 150, 0.45);
    display: none;
}
#galleryPopup #imageContainer {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 95%;
    height: 70%;    
    transform: translate(-50%, -50%);
    overflow: hidden;
}
#galleryPopup #navi {
    width: 165px;
    left: 50%;
    position: absolute;
    font-size: 35px;
    bottom: 23px;
    z-index: 9999999;
    transform: translateX(-50%);
}
#galleryPopup #navi div {
    max-height: unset!important;
    float: left;
}
#galleryPopup #image {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 97%;
    height: 97%;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
}
#galleryPopup #image img {
    width: 100%;
}
#galleryPopup #closeLayer {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}
#galleryPopup #navi i {
    padding:10px;
    text-shadow: 2px 2px 10px rgba(255,255,255,0.5);
}