:root {
    /*Couleur générale*/
    --general_color: #024e9c; /*bleu*/
    --general_orange: #DE5418; /*orange*/
    --general_bleu: #0080FF;
    /*--bgcolor:#d3e9ff;*/
    --bgcolor:black;
    --general_pastel:#fbfdff; /*bleu trés clair*/
    --box_border:#CCCCCC;
    --box_header_text:var(--general_bleu);
}

body {
    padding: 0;
    margin: 0;
    color: #000;
    font-size: 1.2em;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}
a,a:visited{
    color:var(--general_bleu);
}
button{
    font-size: 1em !important;
}


fieldset{
    margin-left:10px;
    margin-right:10px;
    margin-top:10px;
    margin-bottom:10px;
}
legend{
    font-weight: bold;
    color:var(--general_bleu);
}
h4{
    padding-left:10px;
    background-color: var(--general_bleu);
    color:white;
    height: 25px;
    line-height: 25px;
}

.box-body{
    font-size: 12px;
}

select, input{
    background-color: #ffffff;
}

.bandeau-logo {
    background: var(--bgcolor);
    text-align: center
}

.div-login {
    width: 80vw;
    max-width: 400px;
    margin: auto;
    margin-top: calc(50vh - 150px);
    text-align: center
}

.div-login .input-group-addon {
    min-width: 40px;
}


#main{
    margin-bottom:70px;
    margin-top:86px;
}

.repeat-titre{
    display: flex;
    position: fixed;
    width: 100%;
    margin-top:80px;
    height:6px;
    background-image:url(../images/repeat-titre.png);
    background-repeat:repeat-x;
}

#sidebar-wrapper{
    display: flex;
    position: fixed;
    z-index: 100;
    top: 0;
    height: 80px;
    width: 100vw;
    color: #FFFFFF;
    background-color: var(--bgcolor);

}

#navbar-title {
    /*line-height: 50px;*/
    flex: 1 1 auto;
    text-align: center;
    font-size: 12px;
    padding-top:15px;
    background-color: black;
}

#navbar-right{
    flex: 0 0 auto;
    color: white;
    display: inline-block;
    font-size: 1em;
    line-height:40px;
    padding: 5px 10px;
    float: right;
    background-color: black;
}
#navbar-logo{
    display: inline-block;
    vertical-align: top;
    flex: 0 0 auto;
    background-color: black;
}

#nav-footer {
    display: flex;
    align-items: stretch;
    position: fixed;
    bottom: 0;
    background-color: black;
    height: 60px;
    width: 100vw;
    color: black;
    font-weight: bold;
    z-index: 100;
    /*box-shadow: 0 0 10px 5px #CCCCCC;*/

}

#nav-footer-button {
    flex: 1 1 0;
    text-align: center;
    padding-top: 10px
}


#nav-footer-button a {
    text-decoration: none;
}

#nav-footer-button + .nav-footer-button {
    border-left: 1px solid lightgrey;
}

.icone {
    font-size: 1.6em;
    line-height: 20px;
    color:var(--general_bleu);
}

.text {
    font-size: 0.8em;
    line-height: 15px;
    color:white;
}

.btn{
    min-width: 100px;
}
/*
.label_radio{
    padding-left:1px;
    font-weight:normal;
    cursor:pointer;
    margin-right:4px;
    padding-top:3px;
    vertical-align:top;
}
*/
.label_radio{
    font-weight:normal !important;
    cursor:pointer;
    margin-left:5px;
    margin-right:10px;
    padding-top:3px;
    vertical-align:top;
}

.listing td{
    border:solid 1px #CCCCCC;
    padding:5px;
}

.listing_grille th{
    background-color: #EEEEEE;
    border:solid 1px #CCCCCC;
    padding:2px;
}
.listing_grille td{
    border:solid 1px #CCCCCC;
    padding:2px;
}

.boite-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
.boite-detail {
    border:solid 1px #CCCCCC;
    border-radius:5px;
    -moz-box-shadow:2px 2px 2px 2px whitesmoke;
    -ms-box-shadow:2px 2px 2px 2px whitesmoke;
    -webkit-box-shadow:2px 3px 3px 2px whitesmoke;
    margin:10px;
}
.boite-title{
    background-color: var(--general_bleu);
    color:white;
    border-radius:5px 5px 0 0;
    padding:3px;
    font-weight: bold;
}
.boite-content{
    padding:3px;
}

.form-control-special {
    height: 28px;
    padding: 5px 5px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control-special:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control-special::-moz-placeholder {
    color: #999;
    opacity: 1;
}
.form-control-special:-ms-input-placeholder {
    color: #999;
}
.form-control-special::-webkit-input-placeholder {
    color: #999;
}
.form-control-special[disabled],
.form-control-special[readonly],
fieldset[disabled] .form-control-special {
    cursor: not-allowed;
    background-color: #eee;
    opacity: 1;
}
textarea.form-control-special {
    height: auto;
}

/* Small Devices, Phones */
@media only screen and (max-width : 700px) {
    .listing_responsive thead {
        display: none;
    }
    .listing_responsive tr{
        display: block;
        margin-bottom: 40px;
    }
    .listing_responsive td {
        display: block;
        text-align: right;
    }

    .listing_responsive td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
    }

}

.listing{
    width:100%;
}
.listing th{
    text-align:left;
    padding:2px;
    /*padding-left:5px;*/

    vertical-align:middle;
    background-color:#047eff;
    color:white;
    height:20px;
}

.listing td{
    padding:2px;
    border-bottom:solid 1px #CCCCCC;
    border-left: 1px solid #CCCCCC;
}
.listing a:hover{
    text-decoration:underline;
}

.listing th a{
    color:white;
}


.listing_responsive{
    width:100%;
}
.listing_responsive th{
    text-align:left;
    padding:2px;
    /*padding-left:5px;*/

    vertical-align:middle;
    background-color:#047eff;
    color:white;
    height:20px;
}

.listing_responsive td{
    padding:5px;
    border-bottom:solid 1px #CCCCCC;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
}
.listing_responsive a:hover{
    text-decoration:underline;
}

.listing_responsive th a{
    color:white;
}

.ui-autocomplete{
    z-index: 2000 !important;
    max-height: 500px;
    overflow-y: auto;
}

h1{
    font-size: 18px;
}

h3 {
    background:-webkit-gradient(linear, left top, left bottom, from(#333333), to(#444444)); /* Webkit */
    background:-moz-linear-gradient(90deg, #333333, #444444); /* Firefox */
    background:-o-linear-gradient(90deg, #333333, #444444); /* Opéra */
    filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#333333', EndColorStr='#444444'); /* IE */
    -moz-border-radius:3px;
    -ms-border-radius:3px;
    -webkit-border-radius:3px;
    -moz-box-shadow:0 1px 0 #fff;
    -ms-box-shadow:0 1px 0 #fff;
    -webkit-box-shadow:0 1px 0 #fff;
    color:#FFFFFF;

    font-size:14px;
    font-weight:bold;
    padding-left:10px;
    padding-top:5px;
    text-decoration:none;
    text-transform:uppercase;

    height:25px;
}
.orderby{
  background-color: var(--general_bleu);
  color:white;
}

.listing_ajax{
    border:solid 1px #CCCCCC;
    border-collapse:collapse;
}
.listing_ajax th{
    border-bottom:solid 1px #CCCCCC;
    padding:3px;
    background-color:#444444;
    color:white;
}

.listing_ajax td{
    border-bottom:solid 1px #CCCCCC;
    padding:3px;
    background-color:#FFFFFF;
}

.fileLabel {
    color: black;
    padding: 10px;
    /*border-radius: 10px;*/
    cursor: pointer;
    font-size: 18px;
    height: 150px;
    width: 200px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

}
#generic_loader{
    font-size:24px;
    text-align: center;
    padding-top: 350px;
}

 a:hover{
    text-decoration:none;
}