/* img popup modal  */
/* Modal (Popup) Styles */
#imageModal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
}

#imageModal .modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

#imageModal .close {
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #ccc;
}

#imageModal .caption {
    text-align: center;
    color: white;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.7);
    font-family: 'caveat brush', cursive;
    font-weight: 400;
    font-size: larger;
}

#modalCaption{
    width: 300px;
    margin: auto;
}

#imageModal #modalImage{
    width: auto;
    height: auto;
    margin-top: 3rem;
}
/* img popup modal  end --------------------------------------*/