/*button :*/
body.front a.button,
body.front .button{
  display: inline-block;
  border: none;
  padding: 0 10px;
  border-radius: 5px;
  font-weight: normal;
  height: 30px;
  background-color: #41ac44;
  color: #fff;
  cursor: pointer;
  min-width: 150px;
}
body.front a.button{
  padding: 6px;
}
body.front a.button:hover,
body.front .button:hover{
  background: #43bb46;
  color: #fff;
}

/*form :*/
body.front form{
  display: inline-block;
  max-width: 360px;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 10px 10px 20px -10px rgba(0,0,0,0.15);
  -moz-box-shadow: 10px 10px 20px -10px rgba(0,0,0,0.15);
  box-shadow: 10px 10px 20px -10px rgba(0,0,0,0.15);
}
body.front form:after{
  content: '*champ obligatoire';
  font-style: italic;
  font-size: 12px;
  color: #555;
  display: inline-block;
  width: 100%;
  text-align: right;
  margin-top: 14px;
}
body.front form *{
  display: inline-block;
}
body.front form > h2{
  color: #41ac44;
  font-size: 1.4em;
  margin-bottom: 10px;
  width: 100%;
}
body.front form > div{
  padding: 5px 0;
  width: 100%;
}
body.front form a{
  text-decoration: none;
  color: #41ac44;
  font-weight: bold;
}
body.front form a:hover{
  cursor: pointer;
  color: #43bb46;
}
body.front form .button,
body.front form button,
body.front form input{
  border: none;
  padding: 0 10px;
  border-radius: 5px;
  font-weight: normal;
  height: 30px;
}
body.front form .button,
body.front form button,
body.front form input[type="button"],
body.front form input[type="file"],
body.front form input[type="submit"]{
  background-color: #41ac44;
  color: #fff;
  cursor: pointer;
  min-width: 150px;
}
body.front form a.button{
  vertical-align: top;
  padding: 6px;
}
body.front form .button:hover,
body.front form button:hover,
body.front form input[type="button"]:hover,
body.front form input[type="file"]:hover,
body.front form input[type="submit"]:hover{
  background: #43bb46;
  color: #fff;
}
body.front form input[type="number"],
body.front form input[type="search"],
body.front form input[type="email"],
body.front form input[type="tel"],
body.front form input[type="text"],
body.front form input[type="password"]{
  /*-webkit-appearance: none;*/
  background-color: #fff;
  border-radius: 5px;
  padding-left: 10px;
  /*border: solid thin #eee;*/
  width: 100%;
  max-width: 400px;
  box-shadow: inset -2px -2px 5px #eee;
}
body.front form input[type="checkbox"]{
  /*border: solid thin #ccc;*/
  background-color: #fff;
  width: 15px;
  height: 15px;
  margin: 5px;
}
body.front form textarea{
  border-radius: 5px;
  font-family: 'front-font2', Helvetica, Arial, sans-serif;
  min-height: 150px;
  padding: 10px;
  border: none;
  width: 100%;
  max-width: 400px;
  box-shadow: inset -2px -2px 5px #eee;
}

body.front form input[type="number"]:focus,
body.front form input[type="search"]:focus,
body.front form input[type="email"]:focus,
body.front form input[type="tel"]:focus,
body.front form input[type="text"]:focus,
body.front form input[type="password"]:focus,
body.front form textarea:focus{
  outline: none;
  border: solid thin #41ac44;
}

body.front form select{
  background-color: #fff;
  border-radius: 5px;
  padding-left: 10px;
  height: 30px;
  border: none;
  width: 100%;
  max-width: 400px;
  box-shadow: inset -2px -2px 5px #eee;
}
body.front form label{
  text-align: left;
  padding: 5px;
  width: 100%;
}
body.front form .warning{
  background-color: #f00;
  color: #fff;
  padding: 10px;
  text-align: justify;
  border-radius: 5px;
}
body.front form .warning:before{
  content: '';
  display: inline-block;
  background: transparent no-repeat url('../img/form-warning.svg') center;
  background-size: 100%;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
body.front form label + input[type="checkbox"]{
  position: absolute;
  top: 0;
  right: 0;
}
body.front form label + ul,
body.front form ul.errors {
  background-color: #f00;
  padding: 10px;
  text-align: justify;
  list-style: inside url('../img/form-warning.svg');
  border-radius: 5px;
  width: 100%;
}
body.front form label + ul > li,
body.front form ul.errors > li{
  color: #fff;
  display: list-item;
}
body.front form label.required:after{
  content: '*'
}

/*{ Les formulaires spécifiques :*/

body.front form .back{
  font-weight: normal;
  background-color: #41ac452d;
  padding: 2px 4px;
  border-radius: 5px;
}
body.front form .back:hover{
  background-color: #41ac451f;
}
body.front form hr{
  width: 100%;
  padding: 10px 0 0 0;
  margin: 10px 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: solid thin #ededed;
}

/*login :*/
body.front form.login .forgotten-password{
  padding: 20px 0;
}
body.front form.login .remember-me label{
  text-align: center;
}

/*Cacher *champ obligatoir*/
body.front form[name="product_search_form"]:after,
body.front form[name="contact_search_form"]:after,
body.front form[name="purchase_history_search_form"]:after,
body.front form.no-required:after,
body.front form.login:after{
  display: none;
}

/*}*/

/*WCDialog :*/
wc-app-dialog{
  position: fixed;
  border-radius: 0;
}