:root {
    --very-small-text-size: 0.8rem;
    --small-text-size: 1rem;
    --normal-text-size: 1.2rem;
    --large-text-size: 1.5rem;
    --huge-text-size: 2rem;
    --padding-small: 0.5em;
    --padding-normal: 1em;
    --padding-large: 2em;
    --top-color: #1589CB;
    --top-color-1OO: rgba(21, 137, 203, 1);
    --top-color-200: rgba(21, 137, 203, 0.8);
    --top-color-300: rgba(21, 137, 203, 0.6);
    --top-color-400: rgba(21, 137, 203, 0.4);
    --top-color-500: rgba(21, 137, 203, 0.2);
    --top-color-600: rgba(21, 137, 203, 0.1);
    --top-color-700: rgba(21, 137, 203, 0.07);
    --top-color-800: rgba(21, 137, 203, 0.05);
    --second-color: #8D2D84;
    --second-color-1OO: rgba(141, 45, 132, 1);
    --second-color-200: rgba(141, 45, 132, 0.8);
    --second-color-300: rgba(141, 45, 132, 0.6);
    --second-color-400: rgba(141, 45, 132, 0.4);
    --second-color-500: rgba(141, 45, 132, 0.2);
    --second-color-600: rgba(141, 45, 132, 0.1);
    --second-color-700: rgba(141, 45, 132, 0.07);
    --second-color-800: rgba(141, 45, 132, 0.05);
    --light-second-color: rgba(141, 45, 132, 0.05);
    --grey-color: #6c757d;
    --grey-color-1OO: rgba(108, 117, 125, 1);
    --grey-color-200: rgba(108, 117, 125, 0.8);
    --grey-color-300: rgba(108, 117, 125, 0.6);
    --grey-color-400: rgba(108, 117, 125, 0.4);
    --grey-color-500: rgba(108, 117, 125, 0.2);
    --grey-color-600: rgba(108, 117, 125, 0.1);
    --grey-color-700: rgba(108, 117, 125, 0.07);
    --grey-color-800: rgba(108, 117, 125, 0.05);
}


/* CONTAINERS */
.pages-container {
    display: flex;
    gap: 2em;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.custom-table-cell {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.card-top-color {
    background-color: var(--top-color-700);
    position: relative;
    padding: var(--padding-large);
    border-radius: 1.1em;
}


.label-card-bottom-right {
    position: absolute;
    bottom: var(--padding-large);
    right: var(--padding-large);
}

.toaster {
    position: fixed;
    top: 1em;
    z-index: 10000;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 3em;
}

.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 1em;
    background-color: white;
    border-top: 1px solid var(--grey-color-600);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    padding: 1em;
    background-color: var(--top-color-600);
    border-radius: 0.3em 0.3em 0 0;
    border-bottom: 1px solid var(--grey-color-600);
}



/* TEXTES */
.light-color-title {
    color: var(--top-color);
    text-transform: uppercase;
}

.light-grey-title {
    color: var(--grey-color);
    text-transform: uppercase;
}


.sub-text {
    font-size: var(--small-text-size);
    color: var(--grey-color);
}


/* LIST */
.list-field-text {
    font-size: var(--small-text-size);
    color: var(--grey-color);
}

.list-value-text {
    font-size: var(--small-text-size);
    font-weight: bolder;
}

/* PROGRESS BAR */
.progress-bar-container {
    margin: 0 !important;
    width: 5em;
}

.ui.progress .bar>.progress {
    transform: translate(50%, 0);
    right: 50%;
}

/* FILTRES */
.custom-checkbox-filter {
    padding: 0.5em;
}



