@import url("bootstrap.min.css");
@import url("header.css");
@import url("login.css");
@import url("clients.css");
@import url("fichemodele.css");
@import url("stylesaisietemps.css");
@import url("accueil.css");
@import url("livraison.css");

/***********/
/* Communs */
/***********/
html{
  font-family: Arial;
}

body{
  background-color:#E3E3E3;
}


input[type=text],input[type=date],input[type=number], select{
    height: 28px;
    padding: 1px 6px;
    font-size: 14px;
    margin : 3px;
    line-height: 1.42857;
    color: #555;
    background-color: #FFF;
    background-image: none;
    border: 1px solid #CCC;
    border-radius: 4px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

input[type=date]{
  width:100px;
}

.HeureMinute{
  display:block;
  width:70px;
}

table textarea{
    display: block;
    width : 100%;
    padding: 6px 12px;
    font-size: 14px;
    margin : 3px;
    line-height: 1.42857;
    color: #555;
    background-color: #FFF;
    background-image: none;
    border: 1px solid #CCC;
    border-radius: 4px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

table textarea.transparent{
   border : none;
   background: transparent;
   width:100%;
   padding-bottom: 10px;
}

table label{
   padding:3px 10px 3px 10px;
}

.AlignDroite {
  text-align: right;
}

/***************/
/* Identifiant */
/***************/
#erreur {
   position: fixed;
   width: 500px;
   padding: 20px;
   background: red;
   color:yellow;
   top:10px;
   left:calc(50% - 250px);
   border-width: 2px;
   border-color: yellow;
}
#flash-success {
   position: fixed;
   width: 500px;
   padding: 20px;
   background: green;
   color:white;
   top:10px;
   left:calc(50% - 250px);
   border-width: 2px;
   border-color: green;
}

/***********/
/* Classes */
/***********/

/*--------*/
/* Bouton */
/*--------*/
.bouton {
   border : none;
   background: #020B7D;
   padding: 2px 10px;
   -webkit-border-radius: 2px;
   -moz-border-radius: 2px;
   border-radius: 2px;
   color: #FFFFFF;
   font-size: 14px;
   text-decoration: none;
   vertical-align: middle;
 }

.bouton:hover {
 border-top-color: #28597a;
 background: #28597a;
 color: #ccc;
 }

.bouton:disabled {
 border-top-color: #28597a;
 background: #28597a;
 color: #ccc;
 }

.bouton:active {
 border-top-color: #020a7d;
 background: #020a7d;
 }

/*------------------*/
/* Bouton "Nouveau" */
/*------------------*/
.boutonNouveau {
   float:right;
   border : none;
   background: #FFFFFF;
   padding: 4px 10px;
   -webkit-border-radius: 2px;
   -moz-border-radius: 2px;
   border-radius: 2px;
   color: #020B7D;
   font-size: 14px;
   text-decoration: none;
   vertical-align: middle;
   margin:3px 50px 0px 0px;
 }

.boutonNouveau:hover {
 border-top-color: #28597a;
 background: #28597a;
 color: #ccc;
 }

.boutonNouveau:active {
 border-top-color: #020a7d;
 background: #020a7d;
 }

/*-----------------------*/
/* Table de type "liste" */
/*-----------------------*/
.fond {
  width:100%;
  background:#E3E3E3;
  padding:10px;
}

.ListeElement {
  background: #FFFFFF;
  width:70%;
  max-width: 1000px;
  margin:5px auto;
}

.ListeElement table{
  width:100%;
  border-collapse: collapse;
}

.ListeElement th{
  background: #370005;
  color:white;
  font-weight: normal;
  border-style : solid;
  border-width: 1px;
  border-color: white;
  padding:1px 3px;
}

.ListeElement tr:nth-child(even){
  background-color: #f2f2f2;
}

.ListeElement td{
  background: white;
  border-style : solid;
  border-width: 1px;
  border-color: black;
  padding:2px 5px;
  vertical-align: top;
}

/*------------------------*/
/* Table de type "saisie" */
/*------------------------*/
.formsaisie{
   display: block;
   width: 100%;
   max-width:1000px;
   background: #E3E3E3;
   padding: 5px;
   margin:0px auto;
}

.formsaisie table{
   width: 100%;
}

.formsaisie input[type=text]{
  display : block;
  width : 100%;
}

.formsaisie input[type=number]{
  width : 100px;
  text-align: right;
}

.formsaisie input[type=submit]{
   display : block;
   width: 150px;
   margin : 2px auto;
}

.formsaisie select{
  width:100%;
}

.formsaisie4cols{
   display: block;
   width: 100%;
   max-width:1000px;
   background: #E3E3E3;
   padding: 5px;
   margin:5px auto;
}

.formsaisie4cols table{
   width: 100%;
}

.formsaisie4cols table tr td:nth-child(odd){
   width:150px;
   text-align: right;
}

.formsaisie4cols input[type=text]{
  display : block;
  width : 100%;
}

.formsaisie4cols input[type=number]{
  width : 100px;
  text-align: right;
}

.formsaisie4cols input[type=submit]{
   display : block;
   width: 150px;
   margin : 2px auto;
}

.formsaisie4cols select{
  width:100%;
}


.labelhaut{
   vertical-align: top;
}

.clMontant{
  text-align: right;
  padding-right: 5px;
}

.clTotal{
  font-weight: bold;
}

/*--------*/
/* Divers */
/*--------*/
.titrerubrique{
	display:block;
	color:#020B7D;
	background: #F8D57C;
	font-size: 20px;
}

.titreedition{
  display:block;
  color:#020B7D;
  font-size: 14px;
  text-align: center;
}

.formrecherche{
  margin: 0 auto;
  width:1000px;
}

.formrecherche input[type="date"]{
  width: 90px;
}

.filariane {
  display:block;
  background-color: white;
}

.filariane a {
  color:#020B7D;
}

.EvtDepasse {
  color : red;
  font-weight: bold;
}

.colonneid {
  width:50px;
  font-size: 10px;
}

.AccueilFiltre {
  width:100%;
}

.AccueilFiltre input{
  width:100px;
}

.AccueilFiltre select{
  width:200px;
}

.bouton2lignes{
  border : none;
   background: #020B7D;
   -webkit-border-radius: 2px;
   -moz-border-radius: 2px;
   border-radius: 2px;
   color: #FFFFFF;
   font-size: 14px;
   text-decoration: none;
   vertical-align: middle;
   height: 55px;
 }

.bouton2lignes:hover {
 border-top-color: #28597a;
 background: #28597a;
 color: #ccc;
 }

.bouton2lignes:active {
 border-top-color: #020a7d;
 background: #020a7d;
 }


.resumemodele{
  font-size:22px;
  color:#370005;
  margin:15px;
  vertical-align: top;
}

/**
 * HARMATTAN INNOVATION
 * 2019-11
 * www.harmattan-innovation.fr
 */

.clickable {
    cursor: pointer!important;
}

.MenuDeroulant-content {
    z-index: 10!important;
}

.autocomplete-select {
    z-index: 0!important;
}

.ListeElement {
    background-color: transparent;
}

.select2-results__option {
    padding: 0 0 0 5px;
}

table.dataTable tbody tr td, table.dataTable thead tr th {
    padding: 0 0 0 5px;
}
