.box-formulaire {
  background: #fff;
  padding: 30px 15px;
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.07);
}
.box-info {
  padding: 0px;
}
.box-info > div {
  background: var(--primary);
  padding: 30px 20px;
}
.box-info h2 {
  color: #fff !important;
  font-size: 23px !important;
  margin-top: 0 !important;
}
.box-info p {
  color: #fff;
  text-align: center !important;
}
.box-info a.link-tel-form {
  color: #fff !important;
  font-size: 18px !important;
}

.towhite {
  color: #fff !important;
}

#section-contact {
  margin: 20px 0px 30px;
}

#formulaire textarea {
  width: 100%;
  padding: 7px 15px;
  min-height: 240px;
  max-width: 100%;
}

.contact_txt {
  background: rgba(0, 0, 0, 0.05);
  padding: 30px 15px;
  border-radius: 0px;
  text-align: center !important;
  margin-bottom: 15px;
}

#captcha {
  display: flex;
  justify-content: center;
}

/* !!!! Formulaire CSS !!!! */
#contact_page {
  width: 100%;
  margin: 0 auto;
}
.box-formulaire label {
  font-size: 14px;
  color: #000;
}
.text-loi p {
  color: rgba(0, 0, 0, 0.4) !important;
  font-size: 13px !important;
  line-height: 18px;
  text-align: center !important;
  font-family: Arial, Helvetica, sans-serif;
}
.label-input {
  font-size: 13px !important;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
}
.contact_form:hover {
  background: rgba(0, 0, 0, 0.04);
}
.contact_form {
  cursor: pointer;
  width: 100%;
  padding: 7px 15px;
  border-radius: 5px !important;
  background: rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.07);
  outline: none;
  transition: all 0.3s;
  font-size: 14px;
  line-height: 23px;
  margin-bottom: 10px;
  min-height: 30px;
  margin-bottom: 10px;
}
#envoyer {
  border-style: outset;
  border: 0px;
  transition: all 0.3s;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  font-size: 17px;
  margin: 15px 0px;
  width: 100%;
  padding: 15px;
  border-radius: 100px;
}
#envoyer:hover {
  background: var(--primary);
  color: #fff;
}
#formulaire #captcha {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* !!!! Checkbox données !!!! */
.container-donnee {
  margin: 20px 0px;
  display: flex;
}
#formulaire .donnee-texte {
  color: rgba(0, 0, 0, 0.7) !important;
  font-size: 10px !important;
  line-height: 12px;
  margin-left: 10px;
  font-family: Arial, Helvetica, sans-serif;
}
#formulaire .checkbox-donnee {
  width: 28px !important;
  background: none;
  margin: 0px;
}
#formulaire .checkbox-donnee {
  --background: #fff;
  --border: #000;
  --border-active: green;
  --tick: #000;
  --border-hover: green;
  position: relative;
}
#formulaire .checkbox-donnee input,
#formulaire .checkbox-donnee svg {
  width: 28px !important;
  height: 28px !important;
  display: block;
}
#formulaire .checkbox-donnee input {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  outline: none;
  background: var(--background);
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
  transition: box-shadow 0.3s;
  box-shadow: inset 0 0 0 var(--s, 1.5px) var(--b, var(--border));
}
#formulaire .checkbox-donnee input:hover {
  --s: 1.5px;
  --b: var(--border-hover);
}
#formulaire .checkbox-donnee input:checked {
  --b: var(--border-active);
}
#formulaire .checkbox-donnee svg {
  pointer-events: none;
  fill: none;
  stroke-width: 1.5px !important;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--stroke, var(--border-active));
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  -webkit-transform: scale(var(--scale, 1)) translateZ(0);
  transform: scale(var(--scale, 1)) translateZ(0);
}
#formulaire .checkbox-donnee.path input:checked {
  --s: 1.5px;
  transition-delay: 0.4s;
}
#formulaire .checkbox-donnee.path input:checked + svg {
  --a: 16.1 86.12;
  --o: 102.22;
}
#formulaire .checkbox-donnee.path svg {
  stroke-dasharray: var(--a, 86.12);
  stroke-dashoffset: var(--o, 86.12);
  transition:
    stroke-dasharray 0.6s,
    stroke-dashoffset 0.6s;
}
#formulaire .checkbox-donnee.bounce {
  --stroke: var(--tick);
}
#formulaire .checkbox-donnee.bounce input:checked {
  --s: 11px;
}
#formulaire .checkbox-donnee.bounce input:checked + svg {
  -webkit-animation: bounce 0.4s linear forwards 0.2s;
  animation: bounce 0.4s linear forwards 0.2s;
}
#formulaire .checkbox-donnee.bounce svg {
  --scale: 0;
}

@-webkit-keyframes bounce {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounce {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.supp-form {
  justify-content: center;
  margin: 0px;
}
.supp-form > div {
  background: #fff;
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.07);
  padding: 40px 15px;
}

.file {
  display: none;
}
.file-name {
  position: relative;
  overflow: hidden;
  line-height: 30px;
  padding: 5px;
  box-sizing: border-box;
  font-size: 15px;
  vertical-align: middle;
  width: 300px;
  border: 2px solid #dbdbdb;
  border-radius: 0;
  height: calc(2em + 0.75rem + 2px);
}
.btn-file {
  cursor: pointer;
  border: none;
  border-radius: 0;
  width: 150px;
  box-sizing: border-box;
  padding: 10px 10px;
  background-color: var(--primary);
  transition: all 0.6s;
  color: #fff;
  font-size: 15px;
  vertical-align: middle;
  margin-left: 1rem;
}

.container-file .row {
  justify-content: center;
}

.btn-file:hover {
  background: #000;
}
