.deleteUserGroup-popup-container {
    display: none;
    z-index: 102;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100vw;
    background-color: var(--FormCouleurFond);
    overflow-y: auto;

    background-size: cover;
}

#DeleteUserGroupForm {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(0.8);
    width: 100%;
    font-size: var(--FormFontSize);
    background-color: var(--FormCouleurFond);
    text-align: center;
    overflow: hidden;
    padding: 10px 50px;
    max-width: 550px;
}

#DeleteUserGroup .container {
    padding: 16px;
}

#DeleteUserGroup h1 {
    margin-top: 10px;
    margin-bottom: 30px;
    color: var(--FormCouleurCarac);
    text-align: center;
    font-size: var(--FormTailleTitre);
    font-weight: bold;
}
#DeleteUserGroup select {
    height: 85px;
    font-size: var(--FormFontSizeCarac);
    display: inline;
    border: transparent;
}
#DeleteUserGroup label {
    color: var(--FormCouleurCarac);
    font-size: var(--FormTailleSousTitre);
    font-weight: bold;
}

#DeleteUserGroup hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
    margin-left: 0px;
    background-color: #FEFFED;
    margin-right: 0px;
    width: 100%;
    height: 1px;
}

#DeleteUserGroup option {
    font-size: var(--FormFontSizeCarac);
    font-weight: bold;
}


@media screen and (max-width: 767px) {
    #DeleteUserGroup {
        height: 100%;
    }
    #DeleteUserGroup .groupe-container {
        height: 100%;
    }
    #DeleteUserGroupForm {
        width: 100%;
        height: 100%;
        max-width: unset;
        position: unset;
        transform: unset;
    }
}