/***** champs formulaire *****/
label {
  font: 600 14px/20px "Work Sans";
  display: block;
  margin-bottom: 10px;
}
label span {
  color: #e91d1d;
}
select, input[type="text"], input[type="email"], input[type="date"], textarea {
  width: 100%;
  height: 50px;
  font: 400 13px/23px "Work Sans";
  letter-spacing: 0.4px;
  padding: 0 20px;
  background: var(--white);
  color: #222;
  border: none;
}

/* faire en sorte que chrome ne remplisse pas en bleu en autofill mais avec la couleur choisie */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px var(--white) inset !important;
}

textarea {
  min-height: 160px;
  padding: 20px 25px;
  display: block;
}
select {
  -webkit-appearance: none;
  appearance: none;
  background: url("../images/arrow_select.svg") right+20px center no-repeat #fff;
  padding-right: 55px;
}
input[type=checkbox] {
  -webkit-appearance: checkbox;
  -ms-appearance: checkbox;
  appearance: checkbox;
  -moz-appearance: checkbox;
  -o-appearance: checkbox;
  width: 20px;
  height: 20px;
  display: block;
  float: left;
  padding: 0;
  margin: 0;
}
::-webkit-calendar-picker-indicator {
  background: url(../images/calendar.svg) 50% 100% no-repeat;
  cursor: pointer;
  height: 24px;
  outline: none;
}
::placeholder {
  color: #222;
  opacity: 0.65;
  font-weight: 400;
  font-family: "Work Sans";
  font-size: 13px;
}
@media (max-width:700px) {
  label {
    font-size: 12px;
  }
  select, input[type="text"], input[type="email"], input[type="date"], textarea {
    font-size: 12px;
    line-height: 22px;
    height: 48px;
    padding: 0 20px;
  }
  textarea {
    padding: 15px 20px;
  }
}
/** formulaire **/
.formulaire {
  position: relative;
}
.formulaire form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.formulaire form .label {
  margin: 25px 0 10px 0;
  font-weight: 500;
}
.formulaire form .btn_sub {
  text-align: right;
  padding: 30px 0 0 0;
}
.formulaire form .btn_sub .link {
  cursor: pointer;
  padding: 0 30px;
  border: none;
}
.formulaire form .btn_sub .link:hover {
  cursor: pointer;
  border: 1px solid var(--green);
}
@media (max-width:1000px) {
  .formulaire form .grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width:700px) {
  .formulaire form .grid {
    grid-gap: 10px;
  }
  .formulaire form .label {
    margin: 15px 0 10px 0;
  }
  .formulaire form .btn_sub {
    padding: 20px 0 0 0;
  }
  .formulaire form .btn_sub .link {
    line-height: 48px;
    padding: 0;
    width: 100%;
    text-align: center;
  }
}
/***** confirmation formulaire *****/
.confirmation_form {
  text-align: center;
  padding: 50px 30px;
  background: var(--white);
}
.confirmation_form p {
  margin: 5px 0;
  font-weight: 600;
}
.confirmation_form .link {
  margin: 20px auto 0 auto;
  width: fit-content;
  padding: 0 30px;
}
@media (max-width:1200px) {
  .confirmation_form {
    padding: 40px;
  }
}
@media (max-width:700px) {
  .confirmation_form {
    padding: 30px;
  }
  .confirmation_form p {
    margin: 0 0 10px 0;
  }
}
/***** RGPD *****/
#rgpdForm {
  font: 400 12px/22px "Work Sans";
  letter-spacing: 0.6px;
  color: #000;
}
#rgpdForm input[type=checkbox] {
  width: 20px;
  height: 20px;
  display: block;
  float: left;
  padding: 0;
  margin: 2px 0 0 0;
  -webkit-appearance: checkbox;
  -ms-appearance: checkbox;
  appearance: checkbox;
  -moz-appearance: checkbox;
  -o-appearance: checkbox;
}
#rgpdForm label {
  display: block;
  margin: 0;
  padding-left: 40px;
    font-weight: 400;
  font: 400 12px/22px "Work Sans";
  letter-spacing: 0.6px;
}
#rgpdForm a {
  position: relative;
  color: #222;
  padding-bottom: 2px;
  border-bottom: 1px solid #ccc;
}
#rgpdFormAcceptError {
  padding: 10px 0 0 40px;
  color: #e91d1d;
}
@media (min-width:1201px) {
  #rgpdForm a:hover {
    color: #0081c8;
    border-color: #0081c8;
  }
}
@media (max-width:600px) {
  #rgpdForm {
    font-size: 10px;
    line-height: 20px;
  }
  #rgpdForm input[type=checkbox] {
    width: 16px;
    height: 16px;
    margin: 4px 0 0 0;
  }
  #rgpdForm label {
    padding-left: 30px;
    font-size: 10px;
    line-height: 20px;
  }
  #rgpdFormAcceptError {
    padding: 5px 0 0 30px;
  }
}
/* custom */
.rgpd {
  margin-top: 40px;
}
@media (max-width:700px) {
  .rgpd {
    margin-top: 25px;
  }
}
/***** page contact *****/
#contact .page {
  padding: 0;
}
#contact .bloc_contact {
  display: grid;
  grid-template-columns: 380px 1fr;
  grid-gap: 60px;
}
#contact .bloc_contact .coordonnes {
  background-color: var(--white);
  padding: 40px 40px 50px 40px;
}
#contact .bloc_contact .coordonnes.flex-col {
  gap: 20px;
}
#contact .bloc_contact .item {
  margin: 0;
}
#contact .bloc_contact p {
  line-height: 26px;
/*  margin: 10px 0 0 0;*/
}
#contact .bloc_contact p a {
  color: var(--green);
  border-bottom: 0;
}
#contact .bloc_contact p a:hover {
  color: var(--brown);
  border-bottom: 0;
}
/*
#contact .formulaire {
  padding-top: 40px;
}
*/
#contact .formulaire .sous_titre {
  margin-bottom: -5px;
}
#contact .map {
  position: relative;
  height: 400px;
  max-height: 750px;
  background-color: var(--white);
  padding: 30px;
}

#contact .map .border-green iframe {
  width: 100%;
  height: 100%;
  border: none;
  padding: 30px;
}
@media (min-width:1201px) {
  #contact .bloc_contact p a.tel:hover #contact .bloc_contact p a.email:hover {
    color: #2388c3;
  }
}

@media (max-width:1200px) {
  #contact .bloc_contact .coordonnes {
    padding: 35px 40px 40px 40px;
  }
  #contact .formulaire {
    padding-top: 0;
  }
}
@media (max-width:1000px) {
  #contact .bloc_contact {
    grid-template-columns: 1fr;
  }
  #contact .bloc_contact .coordonnes {
    padding: 35px 5vw 40px 5vw;
  }
  #contact .map {
    height: 56vw;
  }
}
@media (max-width:700px) {
  #contact .bloc_contact {
    grid-gap: 15px;
  }
  #contact .bloc_contact p {
    line-height: 24px;
    margin: 5px 0 0 0;
  }
  #contact .bloc_contact p.marge_top {
    margin: 10px 0 0 0;
  }
  #contact .bloc_contact p.adresse a {
    position: absolute;
    right: 0;
    top: 5px;
    width: 35px;
    height: 35px;
    background-size: cover;
  }
  #contact .formulaire {
    padding-bottom: 10px;
  }
  #contact .bloc_contact .coordonnes {
    padding: 35px 7.5vw 40px 7.5vw;
  }
  #contact .map {
    height: 60vw;
    display: none;
  }
}