#picview-back {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    background-color: rgba(0,0,0,0.9);
    z-index: 10000;
}
#picview-viewer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
}
#picview-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10002;
}
#picview-close,
#picview-prev,
#picview-next {
    position: absolute;
    top: 0;
    width: 50px;
    cursor: pointer;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
}
#picview-close {
    right: 0;
    height: 50px;
    background-image: url(../media/close.png);
    z-index: 10004;
}
#picview-prev,
#picview-next {
    bottom: 0;
    z-index: 10003;
}
#picview-prev {
    left: 0;
    background-image: url(../media/prev.png);
}
#picview-next {
    right: 0;
    background-image: url(../media/next.png);
}
#picview-close:hover,
#picview-prev:hover,
#picview-next:hover {
    background-color: rgba(255,255,255,0.5);
}
#picview-prev.disabled,
#picview-next.disabled {
    display: none;
}

.picview-image-wrap .loader {
    background: rgba(0,0,0,0.5);
}
.picview-image-wrap .picview-image-caption {
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: #ffffff;
    text-align: center;
}