﻿/* A */

a {
  color: #2EB27E !important;
  display:inline-block;
  text-decoration: none !important;
  font-weight: 400;
}

.auto{
  margin:0 auto;
}

.align_center {text-align: center!important;}
.align_left { text-align: left!important;}
.align_right{text-align: right!important;}



/* B */
body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
}

.barre_entete{
  background-color:#2EB27E;
  /*height:10vh;*/
  color:white;
  font-size:20px;
  display:flex;
  align-items:center;
  text-align:center;
  justify-content:center;
}

/* C */

.color_red{
  color:red;
}

.center{
  text-align:center;
}

/* D */
.display_none{
  display:none;
}

.display_none_imp{
  display:none!important;
}

.display_inline{
  display:inline-block;
  vertical-align:top;
}

#del_photo1,#del_photo2,#del_photo3{
  width:100px;
  font-size:9px!important;
  padding:2px!important;
}

/* E */

.entete {
    border: 1px solid gray;
    background-color: #2EB27E;
    color: white;
    font-weight: bold;
    font-size: 12px;
    height: 25px;
    text-align: left;
    font-family: 'Open Sans',sans-serif;
  }

/* F */

.filtre_grille {
    text-align: center;
    margin-right: 40%;
    margin-bottom: 25px;
  }

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

*:focus {
    outline: none;
} 

.field_oblig{
  color:red;
}

/* G */

/* H */

html {
  /*background-color: #2EB27E;*/
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display:inline-block;
  margin: 40px 8px 10px 8px; 
  color: #cccccc;
}

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #2EB27E!important;
}

/* I */

.input_long {
    width: 250px!important;
  }


.input_tres_long {
  width: 350px !important;
}

input[type=button], input[type=submit], input[type=reset] {
  background-color: #2EB27E;
  border: none;
  color: white;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px!important;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 5px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #22845C;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

input[type=text], input[type=password], input[type=tel] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 2px 6px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

input[type=text]:focus {
  background-color: #fff;
  border-bottom: 2px solid #2EB27E!important;
}

input[type=text]:placeholder {
  color: #cccccc;
}

/* J */
.justify{
  text-align:justify;
}
/* L */

.lignes_grille, .info_grille {
    text-align: center;
    margin-left: 20%;
  }

.loading_ajax {
    background-color: white;
    border: 1px solid rgb(100, 105, 115);
    height: 40px;
    right: 50%;
    bottom: 50%;
    z-index: 99999999999999;
    font-size: 14px;
    line-height: 1.6em;
    text-align: center;
    position: fixed;
    font-family: 'Open Sans',sans-serif;
    padding: 5px;
  }

/* M */
#modele{
  height:80px;
}

/* O */

/* P */

.paginate_grille {
    text-align: center;
    margin-right: 20%;
  }

.photo_domaines{
    max-height:50px !important;
    max-width:150px !important;
    padding : 0 !important;
    width: auto !important;
    height: auto !important;
}


/* Q */

#questionnaire
{
  padding: 3px;
}



/* S */
select {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding-left: 3px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px!important;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}



/* T */
.top {
    margin-top: 10px;
  }

.tdb{
    width:95%!important;
    display:none;
  }

.titre{
  font-weight:bold;
  font-size:14px;
  background-color:#999999;
  color:white;
  text-align:center;
  border:2px solid #666666;
}

.tdb_modele td, #table_detail_modele td, #table_caract_modele td, #table_montant_detail td, #table_echelle_profondeur td, #tdb_photo td{
  padding:5px;
}

#tdb_grille_marque td{
  border-bottom : 1px solid black!important;
}

/* U */

.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #2EB27E;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}

/* W */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 100px;
}

.zoneCentrale {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height:100%;
}


/* ANIMATIONS */

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }


