
.PhotoViewerContentBg{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 100;
    opacity: 0;
}
.PhotoViewerContent{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    opacity: 0;
    transition-duration: .3s;
}
.PhotoViewerContentImages{
    transition-duration: .3s;
    position: fixed;
    top: 20px;
    left: 0;
    height: calc(100% - 63px);
    width: calc(100% - 100px);
    margin: 0 50px;
    z-index: 100;
}

.PhotoViewerContentImages img{
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    transition-duration: .5s;
}
.PhotoViewerContentNumber{
    position: absolute;
    left: 0;
    text-align: center;
    width: 100%;
    bottom: 0px;
    font-weight: 600;
    font-size: 2rem;
    z-index: 100;
    color: #fff;
    padding: 10px 0;
}
.PhotoViewerContentNext{
    position: fixed;
    right: 0px;
    padding: 10px;
    top: 50%;
    transform: translate(0, -50%);
    background-image: url(../../img/emade_gallery_viewer/next.png);
    background-repeat: no-repeat;
    background-position: right 10px top 10px;
    width: 26px;
    height: 80px;
    z-index: 100;
    cursor: pointer;
}
.PhotoViewerContentPrev{
    position: fixed;
    left: 0px;
    padding: 10px;
    top: 50%;
    transform: translate(0, -50%);
    background-image: url(../../img/emade_gallery_viewer/prev.png);
    background-repeat: no-repeat;
    background-position: left 10px top 10px;
    width: 26px;
    height: 80px;
    z-index: 100;
    cursor: pointer;
}
.PhotoViewerClose{
    position: fixed;
    right: 0px;
    top: 0px;
    padding: 10px;
    background-image: url(../../img/emade_gallery_viewer/close.png);
    background-repeat: no-repeat;
    background-position: 10px 10px;
    width: 20px;
    height: 20px;
    z-index: 100;
    cursor: pointer;
}
.emadePhotoLoading{
    display: block !important;
}
.photoViewer{
    cursor: url(../../img/emade_gallery_viewer/hover.png), pointer !important;;
}
.PhotoViewerTitle{
    display: inline-block
}
.PhotoViewerImageTitle{
    color: #fff;
    margin: 0;
}
.PhotoViewerImageTitle:before{
    content: '|';
    display: inline-block;
    margin: 0 20px;
}
.progressBar{
    opacity: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 300px;
    height: 6px;
    border: 1px solid #fff;
    padding: 1px;
    max-width: 100%;
    max-height: 100%;
    border-radius: 3px;
}
.progressComplete{
    border-radius: 1px;
    float: left;
    width: 0px;
    background-color: #fff;
    height: 100%;
    text-align: center;
    transition-duration: .4s;
    font-size: 1.2rem;
}
.progressCompleteText{
    position: absolute;
    color: #fff;
    left: 50%;
    top: -34px;
    transform: translate(-50%);
    line-height: 160%;
    font-weight: 600;
}
@media (min-width:481px) and (max-width:980px) {
    .PhotoViewerContentImages{
        height: 100%;
        top: 0;
    }
    .PhotoViewerContentNumber{
        padding: 7px;
        background-color: rgba(0,0,0,0.4);
    }
}
@media (min-width:160px) and (max-width:480px) {
    .PhotoViewerContentImages{
        height: calc(100% - 55px);
        width: 100%;
        margin: 0;
    }
}