/* 
    Created on : 16/11/2021, 19:29:14
    Author     : Carlos Fontes
*/
#imgModalPopupIndex {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    /*width:100%; 
    max-width:960px;*/    
    height: 88%;
    width: auto;
}

#imgModalPopupIndex:hover {opacity: 0.9;}

/* The Modal (background) */
.modal.modalPopupIndex {
    display: none; /* Hidden by default */
    position: fixed !important; /* Stay in place */
    z-index: 999 !important; /* Sit on top */
    padding-top: 35px !important; /* Location of the box */
    left: 0 !important;
    top: 0 !important;
    width: 100% !important; /* Full width */
    height: 100% !important; /* Full height */
    overflow: auto !important; /* Enable scroll if needed */
    background-color: rgb(0,0,0) !important; /* Fallback color */
    background-color: rgba(0,0,0,0.9) !important; /* Black w/ opacity */
    margin-left: 0;
    border: none;
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 960px;
}

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

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

/* The Close Button */
#closeModalPopupIndex {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 100;
}

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

@media(max-width: 600px){
    #imgModalPopupIndex {
        width: 90%;
    }
}
