.doublons-obs {
    display: none;
}

.listGroupedObs-container {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    background-color: var(--FormCouleurFond);
    width: 30vw;
    height: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    cursor: auto;
    overflow-y: scroll;
    overflow-x: hidden;
}
.header-collectionGroupedObs-container {
    display: flex;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
}
.header-collectionGroupedObs-container h2 {
    font-size: 1.3em;
    text-align: left;
    background-color: var(--FormCouleurFond);
}

.close-listGroupedObs {
    display: flex;
    border-radius: 50%;
    border: 1px solid #c2c7cc;
    position: relative;
    width: 1.1em;
    height: 1.1em;
    color: transparent;
    transition: all ease 0.3s;
}
.close-listGroupedObs::before, .close-listGroupedObs::after {
    position: absolute;
    width: 0.75em;
    height: 0.75px;
    left: 50%;
    top: 50%;
    margin-left: -0.35em;
    content: '';
    background: #8a9199;
    transition: all ease 0.3s;
}
.close-listGroupedObs::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.close-listGroupedObs::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.close-listGroupedObs:hover {
    cursor: pointer;
    border-color: var(--FormCouleurCarac);
}
.close-listGroupedObs:hover::before, .close-listGroupedObs:hover::after {
    background: var(--FormCouleurCarac);
    transform: rotate(360deg);
}


.collectionGroupedObs-container {
    padding: 0px;
}
.flex-col-collectionGroupedObs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.flex-col-collectionGroupedObs a {
    font-size: 0.9em;
    width: 100%;
    text-align: left;
    padding: 10px 20px;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
}
.flex-col-collectionGroupedObs a:last-child {
    border-bottom: none;
}

.flex-col-collectionGroupedObs a:not(.active):hover {
    background-color: #ffffff87;
}
.flex-title-icon-groupedObs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1em;
}


.flex-col-collectionGroupedObs img {
    max-width: 25px;
    border-radius: 2px;
}
.selected-obs-groupedObs img {
    border: 5px solid var(--FormCouleurSpin) !important;
}

.active-child-groupedObs {
    background-color: #FFFFFF;
}

/*Scrollbar*/
.listGroupedObs-container::-webkit-scrollbar {
	width: 5px;
}
.listGroupedObs-container::-webkit-scrollbar-track {
	background : rgb(255 255 255 / 50%);
}
.listGroupedObs-container::-webkit-scrollbar-thumb {
	background: var(--FormCouleurCarac);
}

@media screen and (max-width: 767px) {
    .listGroupedObs-container {
        width: 40vw;
        z-index: 0;
    }

    .close-listGroupedObs {
        width: 1.6em;
    }

    .header-collectionGroupedObs-container h2 {
        font-size: 0.95em;
    }
    .flex-col-collectionGroupedObs a {
        font-size: 0.65em;
        padding: 10px 5px 10px 20px;
    }

    .flex-col-collectionGroupedObs a {
        flex-direction: column;
        align-items: flex-start;
        gap: unset;
    }
}