.userguide-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;
}

#UserguidePopup h1 {
    border-bottom: 1px solid var(--FormCouleurCarac);
    color: var(--FormCouleurCarac);
    font-size: 2.5em;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    margin: 0 !important;
    background-color: rgba(244, 244, 244, 1);
}

#UserguidePopup .containerCircle {
    transform: translate(-50%, -50%) scale(1);
}
#UserguidePopup .circle-zero span {
    top: 13%;
}

#UserguidePopup .guide-container {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    min-height: 100vh;
}
#UserguidePopup .guide-container .img-box {
    width: 100%;
    background-color: #FFFFFF;
    text-align: center;
}

#UserguidePopup .responsive {
    height: auto;
    width: 100%;
}
#UserguidePopup .guide-container .img-box:not(:first-child) {
    margin-top: -5px;
}

#UserguidePopup .menu-icons {
    z-index: 102;
    position: fixed;
    top: 45%;
    right: 2%;
}
.menu-icons li::marker {
    content: '';
}
#UserguidePopup .accordion-list {
    padding: 0;
}
#UserguidePopup #arrow-down {
    transform: rotate(180deg) !important;
}
#UserguidePopup #arrow-down:hover {
    transform: rotate(180deg) scale(1.15);
}

#UserguidePopup .btnCloseAnnexUserguide {
    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;
}

#UserguidePopup .icons-menu-container img:hover {
    cursor: pointer;
}

#UserguidePopup .guide-container.oversizeUG {
    overflow-x: auto;
}
#UserguidePopup .guide-container.oversizeUG .img-box {
    height: auto;
    justify-content: flex-start;
    min-height: 100vh;
}


#UserguidePopup .disabledFeatureUG {
    opacity: 0.5;
}
#UserguidePopup .disabledFeatureUG:hover {
    cursor: unset !important;
}
#UserguidePopup a:hover .disabledFeatureUG {
    transform: scale(1) !important;
}
#UserguidePopup img.disabledFeatureUG:hover {
    transform: scale(1) !important;
}

/*Scrollbar userguide*/
.userguide-popup-container::-webkit-scrollbar {
	width: 5px;
}
.userguide-popup-container::-webkit-scrollbar-track {
	background : rgb(255 255 255 / 50%);
}
.userguide-popup-container::-webkit-scrollbar-thumb {
	background: var(--FormCouleurSpin);
}
/*Mozilla version*/
.userguide-popup-container {
    scrollbar-color: var(--FormCouleurSpin) rgb(255 255 255 / 50%);
}

@media screen and (max-width: 767px) {
    #UserguidePopup .containerCircle {
        transform: translate(-50%, -50%) scale(0.5);
    }

    #UserguidePopup .img-box {
        height: 100vh;
        
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    #UserguidePopup .guide-container .img-box:not(:first-child) {
        margin-top: 0px;
    }
}