.gallery-full {
    margin: 6px 0;
}

.gallery-full .preview-image {
    position: relative;
    cursor: pointer;
}

.gallery-full .preview-image:before,
.gallery-full .preview-image:after {
    content: "";
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 60px;
    height: 50px;
    transition: 0.3s;
}

.gallery-full .preview-image:before {
    background: url("/../static/img/icon_camera_white.png");
    background-repeat: no-repeat;
    opacity: 0.75;
}

.gallery-full .preview-image:after {
    background: url("/../static/img/icon_camera_red.png");
    background-repeat: no-repeat;
    opacity: 0;
}

.gallery-full .preview-image:hover:before {
    opacity: 0;
}

.gallery-full .preview-image:hover:after {
    opacity: 0.75;
}

.gallery-full .preview-image .image-copyright {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    font-size: 12px;
    margin: 0;
}

.gallery-modal .title,
.gallery-modal .image-title,
.gallery-modal p {
    text-align: left;
}

.gallery-modal .image-title {
    font-weight: bold;
}

@media (max-width: 1050px) {
    .gallery-full .preview-image::before, 
    .gallery-full .preview-image::after {
        right: 20px;
        bottom: 20px;
        width: 30px;
        height: 25px;
        background-size: 100%;
    }
}