/** -------- PDF Modals -------- */
.pdf-modal-content{
    width: 80%;
    max-width: 800px;
}


/** -------- IMAGE Modals -------- */
.image-modal-content{
    width: 100% !important;
    max-width: 1200px !important;
}
#imgModalContent{
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
    /*background-color: #333a44;*/
    display: flex;
    justify-content: center;
    align-content: center;
}


/** -------- SHARED CLASSES -------- */
.custom-modal{
    display:none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    box-sizing: border-box;
}
.modal-content{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
#modalContent{
    width: 100%;
    height: 100%;
}
.close-modal{
    position: absolute;
    top: -2px;
    right: 0;
    font-size: 30px;
    font-weight: bold;
    color: black;
    cursor: pointer;
}