.privacy-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;
}

#PrivacyPopup {
    color:white;
    font-weight: bold;
}

#PrivacyPopup .titlePrivacy {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}
#PrivacyPopup h1 {
    /* color: var(--FormCouleurCarac); */
    color: darkblue;
    font-size: var(--FormTitreText);
    padding: 10px 0;
    margin-bottom: 30px;
}
.closeAnnexPage {
    position: absolute;
    right: 2vw;
    top: 2vh;
}

#PrivacyPopup span {
    color: white;
}

#PrivacyPopup .texte-container {
    text-align: center;
}


#PrivacyPopup .btnCloseAnnexPrivacy {
    margin: 0;
    position: fixed;
    top: 90%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* background-color: var(--FormCouleurCarac); */
    background-color: #4CAF50;
    border-radius: 25px;
    font-weight: bold;
    font-size: var(--FormFontSize);

    padding: 0 20px;
    min-width: 160px;
    height: 50px;
}

#PrivacyPopup #modal-close-remove-user {
    margin: 0;
    position: absolute;
    top: 75%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display:none;
    background-color: red;
}

/*Scrollbar privacy*/
.privacy-popup-container::-webkit-scrollbar {
	width: 5px;
}
.privacy-popup-container::-webkit-scrollbar-track {
	background : rgb(255 255 255 / 50%);
}
.privacy-popup-container::-webkit-scrollbar-thumb {
	background: var(--FormCouleurSpin);
}
/*Mozilla version*/
.privacy-popup-container {
    scrollbar-color: var(--FormCouleurSpin) rgb(255 255 255 / 50%);
}

@media screen and (max-width: 767px) {
    #PrivacyPopup h1 {
        font-size: 1.5em;
        padding: 10px;
    }
    #PrivacyPopup #txtPrivacy1 {
        padding: 0 20px;
    }
    #PrivacyPopup .text-container {
        padding: 0 20px;
    }
}