.glossary-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;
}

#GlossaryPopup {
    color:white;
    font-weight: bold;
}

#GlossaryPopup .titleGlossary {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}
#GlossaryPopup h1 {
    /* color: var(--FormCouleurCarac); */
    color: darkblue;
    font-size: var(--FormTitreText);
    padding: 10px 0;
    margin-bottom: 30px;
}
.closeAnnexPage {
    position: absolute;
    right: 2vw;
    top: 2vh;
}

#GlossaryPopup span {
    color: white;
}

#GlossaryPopup .btnCloseAnnexGlossary {
    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;
}

#GlossaryPopup img {
    max-width: 30%;
}

#GlossaryPopup #txtGlossary1 td {
    background-color: transparent;
}

#GlossaryPopup .glossary-obsVerified {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 40px 0 130px 0;
}

/*Scrollbar glossary*/
.glossary-popup-container::-webkit-scrollbar {
	width: 5px;
}
.glossary-popup-container::-webkit-scrollbar-track {
	background : rgb(255 255 255 / 50%);
}
.glossary-popup-container::-webkit-scrollbar-thumb {
	background: var(--FormCouleurSpin);
}
/*Mozilla version*/
.glossary-popup-container {
    scrollbar-color: var(--FormCouleurSpin) rgb(255 255 255 / 50%);
}

@media screen and (max-width: 767px) {
    #GlossaryPopup h1 {
        font-size: 1.5em;
    }
    #GlossaryPopup p {
        font-size: 0.8em;
    }

    #GlossaryPopup img {
        max-width: 45%;
    }
}