/*---------------------------------------------*/
/* Modal */
/*----------------------------------------------*/
#modal {
    z-index: 900;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    box-sizing: inherit;
    background-color: #202020c4;
    transition: all .25s;
}
.modal-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content {
    max-width: 500px;
    padding: 15px;
    border-radius: .25rem;
    text-align: center;
    background-color: #FFF;
}
.modal-header .bigTitle {
    margin-bottom: 1.5rem;
}
.modal-footer {
    margin-top: 3rem;
}

.close-modal-js {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 5px;
    background-color: var(--noir);
    border-radius: .25rem;
}
.close-modal-js > img {
    width: 20px;
    height: 20px;
    filter: var(--blancSVG);
}
.img-edit-article-modal {
    max-width: 471px;
    border-radius: .25rem;
}