/*:root {
    --background: #eeeeee;
    --lv1: #F8F8F8;
    --lv2: #FCFCFC;
    --lv3: #FFFFFF;

    --primary: #FF8224;
    --primary-hover: #C06224;

    --secondary: #A682FF;
    --secondary-hover: #7D62C8;

    --text: #9596AE;
    --titre: #000122;


    --purple-post-it: #E7E0FF;
    --lightpurple: #CFC1FF;
    --purple: #A682FF;
    --darkpurple: #7D62C8;

    --green-post-it: #C6F3DA;
    --lightgreen: #8DE7B5;
    --grey-bg-color: #23CE6B;
    --darkgreen: #1B9B59;

    --red-post-it: #FDD0D0;
    --lightred: #FBA1A1;
    --red-color: #FF4343;
    --darkred: #C0333B;

    --post-it-orange: #FDE0C8;
    --lightorange: #FBC192;
    --orange: #FF8224;
    --darkorange: #C06224;

    --post-it-blue: #BDECF8;
    --lightblue: #7CDAF2;
    --blue: #00B4E4;
    --darkblue: #0088B4;

    --post-it-gold: #FEF8E2;
    --lightgold: #FBE68E;
    --gold: #F7CD46;
    --darkgold: #D69D38;

    --ocean-post-it: #BCDBFF;
    --lightocean: #6AA5EA;
    --ocean: #346CED;
    --darkocean: #0A409A;

    --grey:#F2F2F2;
    --darkgrey: #cbcbcb;


    --level-2: #FFFFFF;
    --level-1: #F7F7F7;
    --background-level-3: #EEEEEE;
    --disabled: #CACAD6;

}*/



/********** FORMS ***********/

/********** LINKS ***********/
a {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

/********** BUTTONS ***********/


/********** FLEXBOX ***********/
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-self-start {
    align-items: self-start;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

/********** COLORS ***********/


/********** BLOCS ***********/
.bloc{
    padding: 15px;
    border-radius: 10px;
    background-color: var(--lv1);
}

.section .bloc:not(.colored) {
    /* Selectionne tout les blocs, sauf ceux qui sont colored */
    background-color: var(--lv1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 0px 15px 0px rgba(0, 1, 34, 0.1);
}

.section .bloc:not(.colored) .bloc:not(.colored) {
    background-color: var(--lv2);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(0, 1, 34, 0.1);
}

.section .bloc:not(.colored) .bloc:not(.colored) .bloc:not(.colored) {
    background-color: var(--lv3);
    border-radius: 7px;
    padding: 15px;
    box-shadow: 0px 0px 15px 0px rgba(0, 1, 34, 0.1);
}

.bloc.colored {
    /* sans contexte, la couleur affichée est primary */
    background-color: var(--primary);
    color: var(--titre);
    border-radius: 15px;
    padding: 30px;
    box-shadow: none;
}

.bloc.colored.secondary {
    background-color: var(--secondary);
    color: var(--titre);
    border-radius: 15px;
    padding: 30px;
    box-shadow: none;
}

.bloc.colored.blue {
    background-color: var(--blue);
    color: var(--titre);
    border-radius: 15px;
    padding: 30px;
    box-shadow: none;
}

.bloc.colored.red {
    background-color: var(--red-color);
    color: var(--titre);
    border-radius: 15px;
    padding: 30px;
    box-shadow: none;
}

.bloc.colored.green {
    background-color: var(--grey-bg-color);
    color: var(--titre);
    border-radius: 15px;
    padding: 30px;
    box-shadow: none;
}

/***************************************** TABLES *****************************************/

.no-margin {
    margin: 0 !important;
}
.no-padding {
    padding: 0 !important;
}
.def-margin-b{
    margin-bottom: 25px;
}
.form-check {
    margin-top: 10px;
}

#search-query-input {
    border-radius: 5px;
    font-size: 14px;
    margin-top: 15px;
}

.b122-filter {
    margin-right: 15px;
}

#b122-tab-dates-filters {
    margin-top: 10px;
    margin-bottom: 10px;
}
#b122-tab-dates-filters select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 14px;
    height: 38px;
    padding-right: 20px;
    padding-left: 8px;
    font-size: 14px;
    margin-left: 8px;
    border: 1px solid var(--secondary-color);
    border-radius: 2px;
}

/***************************************** PAGINATION *****************************************/

.paginate-top-container, .paginate-bottom-container {
    margin-top: 20px;
    text-align: right;
    font-size: 14px;
    position: relative;
    left: 8px;
}

.step, .currentStep {
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 2px;
    margin-right: 8px;
}

.currentStep {
    background-color: var(--blue-dark-color);
}

.step {
    background-color: var(--blue-dark-color);
    opacity:0.5;
}

.currentStep:hover, .step:hover {
    color: white;
}

.prevLink, .nextLink {
    color: var(--main-color);
    padding: 10px 14px;
    font-size: 14px;
}

.prevLink:hover, .nextLink:hover {
    color: var(--main-color);
}


/************************************* FLAG PREPROD *************************************/

#preprod-flag {
    position: absolute;
    top: 10px;
    left: 200px;
    background-color: red;
    color: white;
    padding: 5px;
    border-radius: 5px;
    z-index: 10000;
}

