@charset "utf-8";
/* CSS Document */
input, label, legend {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*Pour éviter l'affiche du box-shadow généré par le navigateur en cas d'invalidité des info - ex: mail non conforme*/ 
:invalid {
  box-shadow: none;
}
:-moz-submit-invalid {
  box-shadow: none;
}
:-moz-ui-invalid {
  box-shadow: none;
}
/*Fin*/
/* supprimer la bordure noir au focus sur Chrome */
* {
  outline: none;
}
form > div {
  clear: both;
  overflow: hidden;
  padding: 1px;
  margin: 0 0 10px 0;
  font-size: 14px;
}
form > div > fieldset > div > div {
  margin: 0 0 10px 0;
}
form > div > label, legend {
  padding-right: 0px;
}
form > div > div, form > div > fieldset > div {
  width: 100%;
}
form h5 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
}
fieldset {
  border: 0;
  padding: 0;
}
label {
  display: block;
  font-family: "Manrope Bold";
  text-align: left;
  height: auto;
  margin-top: 6px;
  font-size: 15px;
}
input[type=text], input[type=email], input[type=tel], input[type=url], input[type=password], textarea, select {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border: 2px solid #E2E2E4;
  margin: 3px 1px 3px 0px; /*pour le focus*/
  padding: 3px 0px 3px 20px; /*pour le focus*/
  font-size: 15px;
  color: #283c50;
}
textarea {
  font-family: "Manrope Regular";
  width: 100%;
  height: 150px;
  font-size: 15px;
  color: #283c50;
  margin: 3px 1px 3px 0px; /*pour le focus*/
  padding: 3px 0px 3px 20px; /*pour le focus*/
}
select {
  font-family: "Manrope Regular";
  width: 100%;
  height: 50px;
  font-size: 15px;
  color: #283c50;
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=url]:focus, input[type=password]:focus, select:focus {
  margin: 3px 1px 3px 0px;
  padding: 3px 0px 3px 20px;
  border: 1px solid rgb(131, 149, 173); /*#8395ad*/
}
textarea:focus {
  margin: 3px 1px 3px 0px;
  padding: 3px 0px 3px 20px;
  border: 1px solid rgb(131, 149, 173); /*#8395ad*/
}

 /* Customize the label  */
.block-cb {
display: inline-block;
position: relative;
font-family: "Manrope Regular" !important;
padding-left: 35px;
margin: 15px 0;
cursor: pointer;
font-size: 16px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
/*text-decoration: overline;*/
}


.block-cb input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: solid #6419BE;
  /*background-color: #6419BE;*/
}

/* On mouse-over, add a grey background color */ 
.block-cb:hover input ~ .checkmark {
border: solid #6419BE;
  /*background-color: #500FA0;*/
}

/* When the checkbox is checked, add a blue background */
.block-cb input:checked ~ .checkmark {
border: solid #6419BE;
  /*background-color: #500FA0;*/
}

/* Quand checkbox est disable */
/*.block-cb input:disabled ~ .checkmark  */
/*input[type="radio"]:disabled {
  text-decoration: line-through;
  color: #f2f2f2;    
}*/
.block-cb input:disabled ~ .checkmark {
  background-color: #f2f2f2;
}

.txt-disable {
  text-decoration: line-through;
  color: #c3c1c1;    
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.block-cb input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.block-cb .checkmark:after {
  left: 6px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #6419BE;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
} 

.cb-link a {
color: #6419BE;
font-weight: 500;
text-decoration: none;
cursor: pointer;
}
.cb-link a:hover {
text-decoration: underline;
}

.notes {
  color: #FF0000;
}
.notes-input {
  font-family: "Manrope Regular";
  font-size: 14px;
  color: #FF0000;
}
.notes_submit {
  font-size: 14px;
  padding: 5px;
  margin-bottom: 5px;
  color: #FF0000;
}
.notes_ok {
  display: none;
}
/* pas de input[type=button] car appel d'ID spécifique par le js dans ce type éléménts*/
#sendform {
  font-family: "Manrope SemiBold";
  font-size: 17px;
  width: 250px;
  height: 50px;
  margin-top: 20px;
  background: #6419BE;
  border: 0 none;
  cursor: pointer;
  border-radius: 10px;
  color: #ffffff;
  text-align: center;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#sendform:hover {
  /*opacity: 0.7;*/
  background: #500FA0;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 80, 0.12);
}
#nosendform {
  font-family: "Manrope SemiBold";
  font-size: 17px;
  color: #ffffff;
  text-decoration: line-through;
  padding: 5px 15px;
  width: 250px;
  height: 50px;
  margin-top: 20px;
  background: #5B6E83;
  border: 0 none;
  cursor: pointer;
  border-radius: 10px;
}
@media only screen and (max-width : 959px) {
  form > div > fieldset > div > div {
    margin: 0 0 5px 0;
  }
  form h5 {
    padding-top: 40px 0 0;
  }
}