                           /* FORMULAIRE.CSS  */


/* BOUTONS CHOIX */
.Btn_form_espace_2{
    width:12.5%;
    height: 1px;
    float:left;
}
.Btn_form_choix_2{
    width:31.25%;
    float:left;
}
.Btn_form_espace_3{
    width:6.25%;
    height: 1px;
    float:left;
}
.Btn_form_choix_3{
    width:25%;
    float:left;
}

/* BOUTONS RADIO */
.option-input {
  /*font-family:'Poppins';*/
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  /*top: 13.33333px;*/
  right: 0;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 40px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  /*margin-right: 0.5rem;*/
  outline: none;
  position: relative;
  z-index: 1000;
}
.option-input:hover {
  background: #9faab7;
}
.option-input:checked {
  background: #62bbe8;
}
.option-input:checked::before {
  width: 40px;
  height: 40px;
  display:flex;
  /*content: '\f00c'*/;
  content: 'X';
  font-size: 25px;
  font-weight:bold;
  position: absolute;
  align-items:center;
  justify-content:center;
  font-family:'Font Awesome 5 Free';
}
.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #40e0d0;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}
.option-input.radio {
  border-radius: 50%;
}
.option-input.radio::after {
  border-radius: 50%;
}

@keyframes click-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 200px;
    width: 200px;
    margin-left: -80px;
    margin-top: -80px;
    opacity: 0;
  }
}

/* FIELDSET */
fieldset{
    background-color: #f6f6f6;
    border: none;
}


/* LABELS */
.label_form {
  margin: 5px;
}

/* INPUT */
.bloc_input {
    margin: 10px 0;
}

.formulaire input[type=text],
.formulaire input[type=email],
.formulaire input[type=checkbox],
.formulaire input[type=tel],
.slct,
.formulaire input[type=password] {
  height: 50px;
  font-size: 1rem;
  border-radius: 5px;
  padding: 15px 0px;
  text-align: center;
  color: black;
  font-weight: bold;
  background-color: #cecece;
}

.form_50 {
  width: 50px;
}

.form_150 {
  width: 150px;
}