.modal {
    display: block;
    position: fixed;
    z-index: 1;
    max-width: 800px;
    min-width: 300px;
    max-height: 75%;
    overflow-y: auto;
    margin: 1em;
    padding: .5em;
    right: 0;
    bottom: 0;
    border: 2px solid var(--main-color-green-5);
    border-radius: 5px;
    background-color: var(--main-color-white-3);
    color: var(--main-color-black-1);
}

.modal-control {
    height: 1.5em;
}

.modal-close {
    float: right;
    margin-right: .2em;
    padding: .2em;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 4px;
    user-select: none;
}

.modal-close:hover {
    background-color: var(--main-color-white-2);
}

.modal-content {
    margin-top: .4em;
    margin-bottom: .4em;
}

.modal-content h4 {
    margin: 0;
    padding: 0;
}


@media (min-width:10px)  { /* trop petits */ 
    #modal-utilisateur {
        display: none;
    }
}

@media (min-width:320px)  { /* smartphones, iPhone, portrait 480x320 phones */ 
    .modal {
        max-width: 75%;
    }
}

@media (min-width:641px)  { /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ 
    .modal {
        max-height: 600px;
    }
}

@media (min-width:641px)  { /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ 
    .modal {
        max-height: 600px;
    }
}
@media (min-width:961px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */     
    .modal {
        max-height: 800px;
    }
}