.pictureModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
}

    .pictureModal .picture-modal-content {
        margin: auto;
        display: block;
        max-height: 95%;
        max-width: 95%;
    }

    .pictureModal .picture-modal-content, #caption {
        animation-name: zoom;
        animation-duration: 0.6s;
    }


    .pictureModal .close {
        position: absolute;
        right: 0px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
        cursor: pointer;
        padding: 10px;
        z-index: 9999999;
    }

        .pictureModal .close:hover,
        .pictureModal .close:focus {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }

    .pictureModal .fa-chevron-left, .pictureModal .fa-chevron-right {
        cursor: pointer;
    }

    .pictureModal .picture-gallery-move {
        font-size: 2em;
        font-weight: bold;
        color: white;
        height: 100%;
        position: absolute;
        padding: 0.5rem;
        display: none;
    }

    .pictureModal .picture-modal-area {
        display: flex;
    }

#picture-loader {
    font-size: 3em;
    font-weight: bold;
}

#picture-title {
    background: #0F4229;
    color: white;
    font-size: 1.5em;
    display: none;
}
/* 100% Image Width on Smaller Screens */
@media all and (max-device-width: 700px) {
    .pictureModal .picture-modal-content {
        width: 100%;
    }

    .pictureModal .picture-gallery-move {
        padding: 0.5rem 1rem;
        font-size: 2em;
    }

    .pictureModal .close {
        font-size: 2em !important;
    }
}
