/* 
    Created on : 11/06/2021, 18:36:56
    Author     : Carlos Fontes
*/
#imgModalSummit {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    width:100%; 
    max-width:960px;
}

#imgModalSummit:hover {opacity: 0.9;}

/* The Modal (background) */
.modal.modalSummit {
    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 */
#closeModalSummit {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 100;
}

#closeModalSummit:hover,
#closeModalSummit:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media(max-width: 600px){
    #imgModalSummit {
        width: 90%;
    }
}