/* The Modal (background) */
.modal {
    position: absolute;
    float: left;
    left: 50%;
    transform: translate(-50%, 0%);
    top: 73;
    max-height: 92%;
    overflow: auto; 
    background-color: rgba(255,255,255,0.8); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 92%;
    font-size: 18px;
    max-width: 700px;
    text-align: center;
    color: #555;
    padding: 10px 0px 10px 0px;
/*    height: 50px; */
}

/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 1.0s;
    animation-name: zoom;
    animation-duration: 1.0s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}