.gestiondoc {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
}

/* --- SIDEBAR --- */
.gestiondoc .gestiondoc-sidebar {
    width: 25%;
    display: flex;
    padding: 30px 0 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Padding-pad-24, 24px);
}
.gestiondoc .gestiondoc-sidebar button {
    border: 0;
    background: none;
    margin: 0;
    width: 100%;
    text-align: left;
    font-family: 'Figtree';
}
/* --- SIDEBAR --- TITLE / TOGGLE --- */
.gestiondoc .gestiondoc-sidebar button.gestiondoc-sidebar-toggle {
    font-size: 24px;
    font-weight: 600;
    color: var(--Primair-Bleu-primary, #282973);
    display: flex;
    justify-content: space-between;
    padding: 0;
}
.gestiondoc .gestiondoc-sidebar button.gestiondoc-sidebar-toggle .gestiondoc-icon--arrow {
    display: none;
    width: 34px;
    height: 34px;
    padding: 5px;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: var(--Primair-Bleu-primary, #282973);
}
.gestiondoc .gestiondoc-sidebar button.gestiondoc-sidebar-toggle .gestiondoc-icon--arrow svg {
    transition-delay: 0.3s;
}
/* --- SIDEBAR --- LISTE DOSSIERS --- */
.gestiondoc .gestiondoc-sidebar .gestiondoc-sidebar-content {
    width: 100%;
    transition-delay: 0.3s;
}
.gestiondoc .gestiondoc-sidebar .gestiondoc-sidebar-content .gestiondoc-folder-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Padding-pad-0, 0);
    align-self: stretch;
}
.gestiondoc .gestiondoc-sidebar .gestiondoc-sidebar-content .gestiondoc-folder-navigation ul.gestiondoc-folder-list,
.gestiondoc .gestiondoc-sidebar .gestiondoc-sidebar-content .gestiondoc-folder-navigation ul.gestiondoc-folder-list .gestiondoc-folder-item ul.gestiondoc-folder-children {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}
button.gestiondoc-folder-toggle {
    display: flex;
    padding: var(--Padding-pad-8, 8px) 0;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    color: var(--Neutral-Gris-darken, #2C3044);
    font-size: 16px;
    font-weight: 400;
}
button.gestiondoc-folder-toggle .gestiondoc-icon--chevron svg {
    transition-delay: 0.3s;
}
button.gestiondoc-folder-toggle.is-expanded .gestiondoc-icon--chevron svg {
    transform: rotate(90deg);
}
.gestiondoc-folder-children button.gestiondoc-folder-toggle.is-selected {
    background: var(--Pastel-Bleu-pastel, #EEF0FB);
    color: var(--Primair-Bleu-primary, #282973);
}
button.gestiondoc-folder-toggle .gestiondoc-folder-count {
    display: flex;
    width: 18px;
    height: 18px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: var(--Radius-radius-999, 999px);
    background: var(--Neutral-Gris-accent, #5E6478);
    color: var(--Neutral-Blanc, #FFF);
    font-size: 12px;
    font-weight: 400;
    line-height: 0;
}
ul .gestiondoc-folder-children button {
    padding: var(--Padding-pad-8, 8px) 0 var(--Padding-pad-8, 8px) var(--Padding-pad-16, 16px);
}


/* --- CONTENT --- */
.gestiondoc .gestiondoc-content {
    width: 75%;
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Padding-pad-12, 12px);
    flex: 1 0 0;
    align-self: stretch;
    border: 1px solid var(--Neutral-Gris, #D9DCE7);
    background: var(--Neutral-Gris-soft, #F2F3F7);
}
/* --- CONTENT --- ARIANE --- */
.gestiondoc .gestiondoc-content .gestiondoc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}
.gestiondoc .gestiondoc-content .gestiondoc-breadcrumb .gestiondoc-breadcrumb-item {
    color: var(--Neutral-Gris-accent, #5E6478);
    font-family: Figtree;
    font-size: 16px;
    font-weight: 400;
}
.gestiondoc .gestiondoc-content .gestiondoc-breadcrumb .gestiondoc-breadcrumb-item:last-child {
    color: var(--Neutral-Gris-darken, #2C3044);
}
.gestiondoc .gestiondoc-content .gestiondoc-breadcrumb .gestiondoc-breadcrumb-separator {
    height: 16px;
}
/* --- CONTENT --- FICHIERS --- */
.gestiondoc .gestiondoc-content .gestiondoc-files {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Padding-pad-12, 12px);
    align-self: stretch;
}
.gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-empty {
    font-style: italic;
    color: var(--Neutral-Gris-accent, #5E6478);
    margin: 0;
}
/* --- CONTENT --- FICHIERS --- FILE --- */
.gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-file-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}
.gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-file-list .gestiondoc-file {
    display: flex;
    padding: var(--Padding-pad-24, 24px) var(--Padding-pad-8, 8px);
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid var(--Neutral-Gris, #D9DCE7);
    gap:16px;
    text-decoration: none;
}
.gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-file-list .gestiondoc-file:last-child {
    border-bottom: 0;
}
.gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-file-list .gestiondoc-file .gestiondoc-file-type {
    color: var(--Neutral-Gris-accent, #5E6478);
    font-size: 16px;
    font-weight: 500;
}
.gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-file-list .gestiondoc-file .gestiondoc-file-name {
    color: var(--Primair-Bleu-primary, #282973);
    font-size: 22px;
    font-weight: 600;
    flex-grow: 1;
}
.gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-file-list .gestiondoc-file a.gestiondoc-file-download {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--Primair-Bleu-primary, #282973);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}
.gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-file-list .gestiondoc-file a.gestiondoc-file-download .gestiondoc-icon--download svg {
    fill: currentColor;
}

/* --- HOVER --- */
@media (min-width: 991px) {
    .gestiondoc .gestiondoc-sidebar-content button:hover,
    .gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-file-list .gestiondoc-file:hover {
        background: var(--Pastel-Bleu-pastel, #EEF0FB)
    }
    .gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-file-list .gestiondoc-file:hover a.gestiondoc-file-download,
    .gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-file-list .gestiondoc-file a.gestiondoc-file-download:hover {
        color: var(--Second-Corail-access, #DA3A1D);
    }
    .gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-file-list .gestiondoc-file:hover a.gestiondoc-file-download .gestiondoc-icon--download svg,
    .gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-file-list .gestiondoc-file a.gestiondoc-file-download:hover .gestiondoc-icon--download svg {
        fill:  var(--Second-Corail-access, #DA3A1D);
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .gestiondoc {
        padding: 0 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        align-self: stretch;
    }
    /* --- SIDEBAR --- */
    .gestiondoc .gestiondoc-sidebar {
        width: 100%;
        background: var(--Pastel-Bleu-pastel, #EEF0FB);
        border-radius: var(--Radius-radius-12, 12px);
        gap: 0px;
        padding: 0px 0 0 0;
    }
    .gestiondoc .gestiondoc-sidebar button.gestiondoc-sidebar-toggle {
        padding: 12px;
        align-items: center;
        gap: 10px;
        align-self: stretch;
        border-radius: var(--Radius-radius-12, 12px);
        background: var(--Pastel-Bleu-pastel, #EEF0FB);
    }
    .gestiondoc .gestiondoc-sidebar button.gestiondoc-sidebar-toggle .gestiondoc-icon--arrow {
        display: flex;
    }
    .gestiondoc .gestiondoc-sidebar button.gestiondoc-sidebar-toggle.is-open .gestiondoc-icon--arrow {
        transform: rotate(0deg);
    }
    .gestiondoc .gestiondoc-sidebar .gestiondoc-folder-navigation {
        padding: 12px;
    }
    /* --- CONTENT --- FICHIERS --- FILE --- */
    .gestiondoc .gestiondoc-content {
        width: 100%;
    }
    .gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-file-list .gestiondoc-file {
        padding: var(--Padding-pad-12, 12px) var(--Padding-pad-8, 8px);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--Padding-pad-4, 4px);
    }
    .gestiondoc .gestiondoc-content .gestiondoc-files .gestiondoc-file-list .gestiondoc-file a.gestiondoc-file-download {
        margin-top:20px;
    }
}