.filter-right-menu,
.right-menu{
    position: fixed;
    z-index: 50;

    /* centré */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.98);

    width: 70%;

    display: flex;
    flex-direction: column;

    background: rgba(255,255,255,.96);
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.10);
    box-shadow: 0 24px 70px rgba(0,0,0,.22);
    backdrop-filter: blur(8px);

    /* caché par défaut */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;

    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}

.right-menu-visible{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity .22s ease, transform .22s ease, visibility 0s;
}


.title-form{
    display: flex;
    justify-content: space-between;
}
.title-form h3{
    margin: 10px;
}


.dynamique-content .title-input{
    width: 85%;
    margin-top: 15px;
}

.categories-content {
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 65px;
    padding-bottom: 10px;
}

.close-icon{
    width: 16px;
    height: 16px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin: 10px;
    background: rgba(10,15,25,.85);
    box-shadow: 0 10px 22px rgba(0,0,0,.12);
    transition: transform .18s ease, filter .18s ease;
}

.classique_btn {
    box-sizing: border-box;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transition: 0.5s all;
}
.simple-border {
    border: solid 1px #e1dede;
}
.action-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    cursor: pointer;
}
.onColor {
    background: #53cc31;
    border: solid 1px #53cc31;
    transition: all 1s;
    color: white;
}
.onColor:hover {
    background:
            #a3f58b;
    border:
            solid 1px #53cc31;
    transition:
            all 1s;
    color: #000000;
}
.list-title {
    text-overflow: ellipsis;
    white-space: nowrap;
}
.offColor{
    background: #cc4d31;
    border:solid 1px #cc4d31;
    transition: all 1s;
    color: white;
}
.offColor:hover{
    background: #f3a7a7;
    border:solid 1px #cc4d31;
    transition: all 1s;
    color: #000000;
}

.color1:hover{
    background: #8754d4;
    border:solid 1px #8754d4;
    transition: all 1s;
    color: white;
}

.color2:hover{
    border:solid 1px #549fd4;
    background: #549fd4;
    transition: all 1s;
    color: white;
}
.color3:hover{
    background: #d73434;
    transition: all 1s;
    border:solid 1px #d73434;
    color: white;
}
.color4:hover{
    background: #e1ae18;
    border:solid 1px #e1ae18;
    transition: all 1s;
    color: white;
}
.status-red {
    background: #d9534f;
    border: 1px solid #d43f3a;
    color: white;
}
.status-red:hover {
    background: #f2b5b5;
    color: black;
}

.status-orange {
    background: #f0ad4e;
    border: 1px solid #ec971f;
    color: white;
}
.status-orange:hover {
    background: #fcd9aa;
    color: black;
}

.status-green {
    background: #5cb85c;
    border: 1px solid #4cae4c;
    color: white;
}
.status-green:hover {
    background: #b6e8b6;
    color: black;
}

.status-blue {
    background: #5bc0de;
    border: 1px solid #46b8da;
    color: white;
}
.status-blue:hover {
    background: #c2e8f3;
    color: black;
}

.status-dark {
    background: #343a40;
    border: 1px solid #23272b;
    color: white;
}
.status-dark:hover {
    background: #adb5bd;
    color: black;
}

.status-grey {
    background: #6c757d;
    border: 1px solid #6c757d;
    color: white;
}
.status-grey:hover {
    background: #dee2e6;
    color: black;
}

.close {
    display: flex;
    justify-content: center;
    align-items: center;
    border:
            none;
    cursor: pointer;
    height: 26px;
    width: 26px;
    border-radius:
            5px;
    margin:
            10px;
}

.option_submenu {
    max-height: 0;
    transition: max-height 0.5s ease;
    background: #f8f8f8;
}

.option_submenu.option_submenu_visible {
    max-height: 800px; /* Ajustez cette valeur en fonction de la taille maximale de vos sous-menus */
    border-bottom: solid 1px #e0dcdc;
    transition: all 0.5s;
}

.item-search{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 40px);
    padding : 10px 20px ;
    border-bottom: 1px solid #e0dcdc;
    transition: all 0.5s;
    cursor: pointer;
}

.item-search:hover{
    background: #f1f1f1;
    transition: all 0.5s;
}
.total-results{
    width: 90%;
    padding:5%;
    border-bottom: 1px solid #e0dcdc;
    display: flex;
    justify-content: space-between;
}
