/* css */

/* entete */
.volet-du-haut{
    padding: 22px 16px 22px 16px;
}
.volet-du-bas{
    padding: 22px 16px;
}

/* block login */
.block-login {
    width: 350px;
    margin: 0 auto;
    padding: 20px 0;
    color: #555555;
}

/* dashboard */
.card-largeur-1{
    width: 300px;
    min-height: 120px;
    display: inline-block;
    margin: 20px;
}

/* affiche tables */
.table-hauteur-fixe-0{
    overflow-y: auto;
    max-height: 300px;
}
.table-hauteur-fixe-1{
    overflow-y: auto;
    max-height: 700px;
}

/* sablier */
.sablier{
    width: 80px;
    height: 40px;
    background-image: url("/img/Silver-Balls-Swinging.webp");
    background-size: cover;
    margin: auto;
    background-color: #cccccc;
}

.sablier_container{
    position: absolute;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    background-color: #3a3a3a;
    padding-top: 100px;
    display: none;
}
.sablier_container h4{
    color: #ffffff;
    text-align: center;
}
/* fin sablier */

/* divers */
.cadre_vert{
    border: 2px solid green;
}
.cadre_rouge{
    border: 2px solid red;
}
.lien-en-bleu{
    color: #0a53be;
}
.lien-non-souligne{
    text-decoration: none !important;
}
.fleche-bas:after{
    margin-left: 10px;
    content: '\25BC';
}
.fleche-haut:after{
    margin-left: 10px;
    content: '\25B2';

}
.pointer{
	cursor:pointer;
}
.block-largeur-1{
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
}
.block-largeur-2{
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}
.hauteur_1{
    height: 30px;
}
.hauteur_2{
    height: 60px;
}
.bloc-hide{
    display: none;
}
.bloc-show{
    display: block;
}
.clear_right{
    clear: right;
}

/* complément à boostrap */
.border-left-primary {
    border-left: 0.25rem solid var(--bs-primary);
}

.border-left-secondary {
    border-left: 0.25rem solid var(--bs-secondary);
}

.border-left-success {
    border-left: 0.25rem solid var(--bs-success);
}

.border-left-info {
    border-left: 0.25rem solid var(--bs-info);
}

.border-left-warning {
    border-left: 0.25rem solid var(--bs-warning);
}

.border-left-danger {
    border-left: 0.25rem solid var(--bs-danger);
}

.border-left-light {
    border-left: 0.25rem solid #f8f9fc;
}

.border-left-dark {
    border-left: 0.25rem solid #5a5c69;
}
.border-left-deep-orange {
    border-left: 0.25rem solid #ff5722;
}
.border-left-orange {
     border-left: 0.25rem solid #ff9800;
 }