/*
* Copyright 2012-2024 Université de Lille, CHU de Lille, Caroen Kevin, Coadou Hervé, Zitouni Djamel
*
* Ce code est soumis aux droits d'auteur et ne peut être reproduit, distribué ou utilisé sans autorisation.
*/

.modal {
    display: flex;
    position: fixed;
    z-index: 600;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.65);
}

.modal-title {
    text-align: center;
    padding: 1em;
    text-transform: uppercase;
}

.modal-body {
    background-color: #fefefe;
    padding: 20px;
    overflow-y: hidden;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80vw;
    max-height: 85vh;
    overflow-y: hidden;
}

.close-modal {
    position: absolute;
    right: 0;
    top: 0;
    color: black;
    font-size: 4em;
    float: left;
    line-height: 80%;
    padding: 15px;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}