/* modal dia da Industria */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000;
    left: 0;
    top: 0 !important;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    position: relative;
    text-align: center;
    top: 0 !important;
}

.close {
    color: #0f287c;
    z-index: 100;
    font-size: 28px;
    font-weight: bold;
    position: absolute; 
    top: 5px;
    right: 5px;
    padding: 5px 10px;
    border-radius: 0 8px 0 8px;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: #1073c7;
    background-color: transparent !important;
    text-decoration: none;
    cursor: pointer;
}

.modal-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
    border-radius: 4px;
}
/* Fim modal dia da Industria */
