/*==================STYLE DE LA FENETRE MODALE DE CHARGEMENT======================*/
#loader_img{
    width:50px;
    height:50px;
    margin: 0px auto;
}
#loader_signature{
    width: 100px;height:25px;
    margin: auto;border:none;
}
#loader_signature2{
    width: 50%;height:90%;
    margin: auto;border:none;
}
#load_modal {
    text-align: center;
    padding: 0!important;
}

#load_modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

#load_modal .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}
#loader_title{text-align:center;}

/* loader de la page*/

.loader {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity:0.9;
    display: flex; 
    flex-direction:column;
    justify-content: center;
    align-items: center;
    z-index:1000;
}
.lettre {
    color: #1A2757;
    font-size: 20px;
    letter-spacing: 15px;
    margin-bottom: 150px;
    animation: flash 1.2s linear infinite;
}
@keyframes flash {
    0% {
        color: #fff;
        text-shadow: 0 0 7px #fff;
    }
    90% {
        color: #1A2757;
        text-shadow: none;
    }
    100% {
        color: #fff;
        text-shadow: 0 0 7px #fff;
    }
}

.lettre:nth-child(1){
    animation-delay: 0.1s;
}
.lettre:nth-child(2){
    animation-delay: 0.2s;
}
.lettre:nth-child(3){
    animation-delay: 0.3s;
}
.lettre:nth-child(4){
    animation-delay: 0.4s;
}
.lettre:nth-child(5){
    animation-delay: 0.5s;
}
.lettre:nth-child(6){
    animation-delay: 0.6s;
}
.lettre:nth-child(7){
    animation-delay: 0.7s;
}
.lettre:nth-child(8){
    animation-delay: 0.8s;
}
.lettre:nth-child(9){
    animation-delay: 0.9s;
}
.lettre:nth-child(10){
    animation-delay: 1s;
}
.lettre:nth-child(11){
    animation-delay: 1.1s;
}

.fondu-out {
    opacity: 0;
    transition: opacity 0.4s ease-out;
    z-index:-1;
}

/*==================>>FIN<<==STYLE DE LA FENETRE MODALE DE CHARGEMENT======================*/

/*-------------FILD'ARIANE--------------------*/
.grid {
	display: grid;
	align-items: center;
	color: #000;
}

/*--------------------------FILTRE----------------------*/
.filtre{
    display: flex;
    justify-content:center;
    align-items:center;
    z-index:1000;
}

.filtre .home{
    color:#000;
    text-transform:uppercase;
    color: #c0392b;
} 
/*--------------------Floating button---------*/
.floating-container{
    position: fixed;
    width:100px;
    height:100px;
    bottom:0;
    right:0;
    z-index:1000;
    margin:10px 0;
}

.floating-container:hover{
    height: 200px;
}

.floating-container:hover .floating-button{
    box-shadow: 0 10px 25px rgba(204, 51, 51, 0.6);
    transform: translateY(5px);
    transition: all 0.3s;
}

.floating-button{
    position: absolute;
    width:60px;
    height:60px;
    background:#c0392b;
    bottom:0;
    border-radius:50%;
    left:0;
    right:0;
    color:#fff;
    line-height:60px;
    text-align:center;
    font-size:23px;
    z-index:1000;
    box-shadow: 0 10px 25px -5px rgba(204, 51, 51, 0.6);
    cursor:pointer;
    -webkit-transition: all 0.3s;
    transition:all 0.3s;
}
.float-element{
    position:relative;
    display:block;
    color:#fff;
    display:grid;
    place-items:center;
    z-index:0;
    opacity:0;
    cursor:pointer;
}
.float-element:nth-child(1){
    box-shadow: 0 20px 20px -10px  rgba(209, 44, 240, 0.6);
}
.float-element:nth-child(1) select{
    border-radius:15px;
    margin-right:150px;
    height:50px;
    color: #fff;
    background:#8e44ad;
}
.float-element:nth-child(2){
    margin:15px 0;
    border-radius:50%;
    width:50px;
    height:50px;
    background:#8e44ad;
    box-shadow: 0 20px 20px -10px rgba(209, 44, 240, 0.6);
}

@-webkit-keyframes come-in{
    0%{
        opacity:0;
    }
    30%{
        transform: translateX(-50px) scale(0.4);
    }
    70%{
        transform: translateX(0px) scale(1.2);
    }
    100%{
        transform: scale(1);
        opacity:1;
    }
}

.floating-container:hover .element-container .float-element:nth-child(1){
    animation: come-in 0.4s forwards 0.2s;
}
.floating-container:hover .element-container .float-element:nth-child(2){
    animation: come-in 0.6s forwards 0.4s;
}