/*---------*/
/* FLEXBOX */
/*---------*/

/*FLEX*/
.display-flex { display: flex; display: -webkit-box; display: -webkit-flex;}
.flex-0 { flex: 0; }
.flex-0_1 { flex: 0.1; }
.flex-0_5 { flex: 0.5; }
.flex-1 { flex: 1; }
.flex-2 { flex: 2; }
.flex-3 { flex: 3; }
.flex-4 { flex: 4; }
.flex-5 { flex: 5; }
.flex-7 { flex: 7; }
.flex-8 { flex: 8; }
.flex-11 { flex: 11; }

/*FLEX WRAP*/
.flex-wrap-wrap { flex-wrap: wrap}

/*FLEX DIRECTION*/
.flex-direction-column { flex-direction: column; }
.flex-direction-column-reverse { flex-direction: column-reverse; }
.flex-direction-row { flex-direction: row; }
.flex-direction-row-reverse { flex-direction: row-reverse; }

/*JUSTIFY*/
.justify-content-center { justify-content: center; }
.justify-content-flex-end { justify-content: flex-end; }
.justify-content-flex-start { justify-content: flex-start; }
.justify-content-space-around { justify-content: space-around; }
.justify-content-space-between { justify-content: space-between; }

/*ALIGN*/
.align-self-center { align-self: center; }
.align-content-flex-start { align-content: flex-start; }
.align-items-flex-end { align-items: flex-end; }   
.align-items-center { align-items: center; }   

/*POSITION*/
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-relative { position: relative !important; }

/*MARGIN*/
.margin-auto { margin: auto; }
.margin-left-auto { margin-left: auto; }
.margin-top-auto { margin-top: auto; }
.margin-right-auto { margin-right: auto; }
.margin-bottom-auto { margin-bottom: auto; }

/*DISPLAY*/
.display-none { display: none; }

#toast-container .toast.toast-info{
    background-color: #313131;
    color: white;
}
#toast-container .toast.toast-success{
    background-color: #1cca7e;
    opacity: 0.8;
}
.toast, .toast:hover{
    box-shadow: none;
}

/*SCROLLER*/
.scroller-submenu{
    height: calc(100vh - 142px);
    overflow-y: auto;
    overflow-x: hidden;
}

/*FOCUS*/
*:focus {
    outline: none;
}

/* CONTAINER TAILLE */
.idt-height{
    height: 100vh
}

/* bouton login */
.idt-login-next-btn:hover{
    opacity: 0.9;
}