/* duaGallery 2.0 (2020-09-30) | Duacode (http://www.duacode.com) */
#duaGallery {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 5000;
    top: 0;
    left: 0;
}
#duaGallery #duaGallery-bgr {
    width: 100%;
    height: 100%;
    background-image: url('../images/loading.gif');
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(0,0,0,0.85);
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    cursor: zoom-out;
}
#duaGallery #duaGallery-cont {
    position: absolute;
    z-index: 15;
    cursor: pointer;
}
#duaGallery #duaGallery-cont #duaGallery-elem {
    width: 100%;
    height: 100%;
    display: block;
}
#duaGallery #duaGallery-footer {
    width: 100%;
    position: absolute;
    z-index: 20;
    bottom: 5px;
    left: 0;
    color: white;
    text-align: center;
}
#duaGallery #duaGallery-footer span {
    padding: 0 5px;
    background-color: rgba(0,0,0,0.25);
    display: inline-block;
}
#duaGallery #duaGallery-close,
#duaGallery #duaGallery-prev,
#duaGallery #duaGallery-next {
    color: white;
    font-size: 32px;
    line-height: 1;
    text-shadow: 0 0 5px black;
    opacity: 0.75;
    cursor: pointer;
    position: absolute;
    z-index: 20;
}
#duaGallery #duaGallery-close:hover,
#duaGallery #duaGallery-prev:hover,
#duaGallery #duaGallery-next:hover {
    opacity: 1;
}
#duaGallery #duaGallery-close {
    top: 10px;
    right: 10px;
}
#duaGallery #duaGallery-close:after {
    content: '×';
}
#duaGallery #duaGallery-prev,
#duaGallery #duaGallery-next {
    top: 50%;
    transform: translateY(-50%);
}
#duaGallery #duaGallery-prev {
    left: 10px;
}
#duaGallery #duaGallery-prev:after {
    content: '←';
}
#duaGallery #duaGallery-next {
    right: 10px;
}
#duaGallery #duaGallery-next:after {
    content: '→';
}