.modalContainer {
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0, 0.5);
    position: fixed;
    z-index: 10000;
    transform: scaleY(0);
    overflow: hidden;
}

.modalTop {
    height: 40px;
}

.modalBody {
    position: relative;
    max-height: 60vh; /* 100vh = la hauteur de l'écran. */
    width: auto;
    overflow: auto;
}

.modalFooter {
    height: 40px;
    text-align: center;
}

.modalBox-content {
    position: absolute;
    display: flex;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* tiré de la moitié de sa propre hauteur / largeur */
    width: 85%;
    min-width: 250px;
}

.modalBox-content-wrapper {
    position: relative;
    margin: auto;
    width: 100%;
    height: auto;
    background-color: white;
}

.isModalContent {
    display: none;
}

.modalBox {
    position: relative;
    height: 100%;
    width: 100%;
}

.modal-row {
    display: block;
    line-height: 2.5em;
    height: 2.5em;
    border-bottom: solid 1px #c70829ad;
    cursor: pointer;
    overflow: hidden;
}

    .modal-row::after {
        content: "";
        display: block;
        clear: both;
    }

.modalCb-right {
    float: right;
    margin: 0;
    line-height: 2em;
    height: 2em;
}

.modalLabel-left {
    float: left;
}

.modalClose {
    color: #c70829;
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 17px !important;
}
