/*FOND ECRAN ET TITRE*/
#pageBackground {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: -1;
    filter: blur(5px);
    background-image: url(../images/fond1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#pageBackground .backgroundColor {
    height: 100%;
    width: 100%;
    background-color: #dadadabd;
}
h1 {
    text-shadow: 0 0 0.2em #293133, 0 0 0.2em #293133
}

h3.text-white {
    text-shadow: 0 0 0.2em #293133, 0 0 0.2em #293133
}
/*BORDER BLEU GOOGLE*/
.form-control, #registration_form {
    box-shadow: none!important;  
}
input, select, option:focus
{
    outline: 0px !important;
    border: none!important;
}
/* -----> Plz leave the MODAL alone !! */
.modal input {
    outline: 1px !important;
    border: solid grey 1px !important;
}
.modal .form-control {
    outline: 1px !important;
    border: solid grey 1px !important;
}



body{
    height: 100%;
}
body .container table {
    text-transform: capitalize;
}
 
h1{
    font-size:2.75rem !important;
 }
 

/* FLASH MESSAGES */
.flash-notice {
    position: absolute;
    background: #31bfc5;
    border-radius: 10px;
    padding: 10px;
    color: white;
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    user-select: none;
    
    animation: notice_disappear linear 0.5s forwards;
    animation-delay: 3s;
}

.flash-error {
    position: fixed;
    background: #c5382f;
    border-radius: 10px;
    padding: 10px;
    color: white;
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    user-select: none;
    animation: notice_disappear linear 0.5s forwards;
    animation-delay: 5s;
}

@keyframes notice_disappear {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/* BOUTON REGISTER*/
#register{
    text-decoration: none;
    color:white;
}

/* Webkit based browsers */
meter[value="1"]::-webkit-meter-optimum-value { background: red; }
meter[value="2"]::-webkit-meter-optimum-value { background: yellow; }
meter[value="3"]::-webkit-meter-optimum-value { background: orange; }
meter[value="4"]::-webkit-meter-optimum-value { background: green; }

/* Gecko based browsers */
meter[value="1"]::-moz-meter-bar { background: red; }
meter[value="2"]::-moz-meter-bar { background: yellow; }
meter[value="3"]::-moz-meter-bar { background: orange; }
meter[value="4"]::-moz-meter-bar { background: green; }

/* NAVBAR */
.navbar-brand {
    line-height: 1rem
}

/*  CAPITALIZE LETTER*/
.select2-search > .select2-search__field {
    text-transform: capitalize !important;
}

/* SELECT 2 */

/* Autocomplete */
.algolia-autocomplete {
    width: 100%;
}
.algolia-autocomplete .aa-input, .algolia-autocomplete .aa-hint {
    width: 100%;
}
.algolia-autocomplete .aa-hint {
    color: #999;
}
.algolia-autocomplete .aa-dropdown-menu {
    width: 100%;
    background-color: #fff;
    border: 1px solid #CCC;
    border-top: none;
    max-height: 270px;
    overflow-y: scroll;
}
.algolia-autocomplete .aa-dropdown-menu .aa-suggestion {
    cursor: pointer;
    padding: 5px 4px;
}
.aa-suggestion p {
    margin-bottom: 0;
}
.algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor {
    background-color: #B2D7FF;
}
.algolia-autocomplete .aa-dropdown-menu .aa-suggestion em {
    font-weight: bold;
    font-style: normal;
}

.btn-xs {
    padding: 0.05rem 0.2rem;
    font-size: 0.675rem;
    line-height: 1.5;
    border-radius: .2rem;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    z-index: 10;
}

.btn-lighter {
    filter: brightness(.7);
}

.btn-lighter:hover {
    filter: unset;
}

.form-control-inline {
    height: calc(1.5em + 0.75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

/* filter_form */

#filter_form {
    display: flex;
    justify-content: center;
}