.about-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;
}

#AboutPopup {
    color:white;
    font-weight: bold;
}

#AboutPopup .titleAbout {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}
#AboutPopup h1 {
    /* color: var(--FormCouleurCarac); */
    color: darkblue;
    font-size: var(--FormTitreText);
    padding: 10px 0;
    margin-bottom: 30px;
}
.closeAnnexPage {
    position: absolute;
    right: 2vw;
    top: 2vh;
}

#AboutPopup span {
    color: white;
}

#AboutPopup .btnCloseAnnexAbout {
    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;
}

#AboutPopup #txtCGU {
    color: white;
    margin-bottom: 10vh;
    margin-top: 5vh;
}
#AboutPopup #txtCGU a {
    text-decoration: underline;
}
/* #AboutPopup #txtCGU a:hover {
    color: var(--FormCouleurCarac);
} */

/*Scrollbar about*/
.about-popup-container::-webkit-scrollbar {
	width: 5px;
}
.about-popup-container::-webkit-scrollbar-track {
	background : rgb(255 255 255 / 50%);
}
.about-popup-container::-webkit-scrollbar-thumb {
	background: var(--FormCouleurSpin);
}
/*Mozilla version*/
.about-popup-container {
    scrollbar-color: var(--FormCouleurSpin) rgb(255 255 255 / 50%);
}


@media screen and (max-width: 767px) {
    #AboutPopup h1 {
        font-size: 1.5em;
    }
    #AboutPopup span {
        font-size: 0.9em;
    }
    #AboutPopup .texte-container {
        padding: 0 20px;
    }

    #AboutPopup .btnCloseAnnexAbout {
        width: auto;
        padding: 10px 20px;
    }
    #AboutPopup .closeAnnexPage {
        width: 22px;
    }
}