/* Global Css */

:root {
  --color1: #f4627f;
  --color2: #f9fafb;
  --color3: #d9d9d9;
  --color4: #707070;
  --green1: #a1c84e;
  --green2: #d0e1a4;
  --green3: #eef8d9;
  --font: "Poppins", sans-serif;
  --font2: "Funnel Display", "Poppins", sans-serif;
  --bs-btn-active-bg: #a1c84e;
}

.successinput:-webkit-autofill,
.successinput:-webkit-autofill:hover,
.successinput:-webkit-autofill:focus,
.successinput:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--green3) inset !important;
}

.successinput input:-webkit-autofill,
.successinput input:-webkit-autofill:hover,
.successinput input:-webkit-autofill:focus,
.successinput input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--green3) inset !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.font2{
  font-family: var(--font2);
}

body {
  background-color: var(--color2) !important;
  font-family: var(--font) !important;
  overflow-x: hidden;
}

::selection {
  background-color: var(--green2);
  color: #000;
}

.separateur {
  height: 1px;
  background-color: var(--color3);
  width: 96%;
  margin: auto;
}

.standardBtn {
  width: 100%;
  background-color: var(--color1);
  color: #fff;
  height: 60px;
  border-radius: 9px;
  border: 0;
  font-size: 21px;
}

.forceWhiteBg {
  background-color: #fff !important;
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* End Global Css */
/* Header */

header {
  /* background-color: #fff; */
  /* box-shadow: 0 5px 6px rgb(0, 0, 0, 0.16); */
  /* box-shadow: rgb(83 53 15 / 7%) 0px 10px 30px; */
}

#header-bar {
  padding: 6px 0;
}

.questionLink {
  color: var(--color4);
}

.questionTxt {
  margin-right: 10px;
}

.assistanteImg:after {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--green1);
  display: inline-block;
  border-radius: 100%;
  border: 2px solid #fff;
  position: relative;
  top: -30px;
  right: 20px;
}

.assistanteImg.offline:after {
  background: var(--color1);
}
/* End Header */
/* Formulaire */

#formulaire {
  padding: 50px 0;
}

.stepTitle {
  font-weight: bold;
  font-size: 21px;
}

.stepDescription {
  font-size: 16px;
  margin: 0;
}

.captionFormBg {
  background-color: var(--color1);
  text-align: center;
  padding: 5px;
  rotate: -1deg;
  margin-bottom: 25px;
  margin-top: 10px;
}

.captionForm {
  rotate: 1deg;
  font-size: 16px;
  color: #fff;
}

.formLabel {
  font-weight: bold;
  font-size: 16px;
}

.formIconContainer {
  width: 100%;
}

#formulaire .btn-check:checked + .btn,
#formulaire .btn.active {
  background-color: #fff !important;
  border-color: var(--green1) !important;
  color: #3e3e3e;
}

#formulaire .iconLabel {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  color: #000;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: 60px;
}

.firstBtn {
  width: 100%;
  background-color: var(--color1);
  color: #fff;
  height: 60px;
  border-radius: 9px;
  border: 0;
  font-size: 18px;
  font-family: var(--font2);
}

.nextBtn {
  width: 100%;
  background-color: var(--color1);
  color: #fff;
  height: 60px;
  border-radius: 9px;
  border: 0;
  font-size: 18px;
  font-family: var(--font2);
}

.backBtn {
  height: 62px !important;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--color3);
  background-color: #fff;
}

.bonasavoir {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.selfassurance {
  margin: 15px 0;
}

/* Progression */

.singleStep {
  height: 29px;
  width: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.progressDesktop {
  box-shadow: -10px 0px 14px -10px #e3e3e3;
  padding: 15px;
  margin-left: 60px;
  margin-top: 140px;
  position: fixed;
}

.stepTitles {
  height: 29px;
  display: flex;
  align-items: center;
  color: var(--color3);
  text-decoration: none;
  cursor: pointer;
}

.progressCircle {
  width: 8px;
  height: 8px;
  background-color: var(--color3);
  border-radius: 100%;
}

.singleStep.current.step1 {
  border-radius: 50px 50px 50px 50px !important;
}

.singleStep.active.step1 {
  border-radius: 50px 50px 0px 0px !important;
}

.singleStep.current {
  background-color: var(--green2);
  border-radius: 0 0 50px 50px;
}

.singleStep.active {
  background-color: var(--green2);
  border-radius: 0 0 0 0;
}

.singleStep.current .progressCircle,
.singleStep.active .progressCircle {
  background-color: var(--green1);
}

.active + .stepTitles,
.current + .stepTitles {
  color: #000 !important;
}

/* End Progression */

.bonasavoir p,
.selfassurance p {
  color: #6b6b6b;
  font-size: 12px;
}

.bonasavoir h4 {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  font-family: var(--font2);
  margin: 0;
}

.checkedLabel {
  opacity: 0;
  transition: 0.5s;
}

.btn-check:checked + label .checkedLabel {
  opacity: 1 !important;
  transition: 0.5s;
}

.btnImg {
  height: 47px;
  margin-top: -17px;
}

.formLabel {
  margin: 0 0 0px 0 !important;
}

.input-group input{
  border-radius: 0 5px 5px 0!important;
}

#formulaire input,
#formulaire select {
  border-radius: 5px;
  padding: 17px 20px;
  font-family: var(--font2);
}

#formulaire [type="checkbox"] {
  padding: 1px !important;
}

#formulaire input[type="text"]:focus,
#formulaire input[type="number"]:focus,
#formulaire select:focus,
#formulaire input[type="tel"]:focus,
#formulaire input[type="email"]:focus,
#formulaire input[type="date"]:focus {
  background-color: #fff;
  box-shadow: none;
  border-color: #a5a5a5;
}

/* Erreur */

.errorMsg,
.raceErrorMsg {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--color1);
  margin-top: 9px;
  display: none;
}

.inputError {
  border: 1px solid var(--color1) !important;
}

.successinput {
  background-color: var(--green3) !important;
  box-shadow: none !important;
  border-color: var(--green1) !important;
}

div#progressMobile {
  position: fixed;
  bottom: 0;
  background-color: #fff;
  box-shadow: rgb(83 53 15 / 7%) 0px -10px 30px;
  padding: 15px;
  z-index: 10;
}

.progressMobile,
.progress {
  height: 4px !important;
}

.assistanteImg img {
  /* width: 94px; */
  margin-top: 3px;
  margin-bottom: 10px;
}

.slideback {
  display: none;
  cursor: pointer;
}

.goSlideback {
  /* display: none; */
  cursor: pointer;
}

.progress {
  background-color: #e0e0e0;
}

.progressMobile {
  border-radius: 50px;
  background: var(--green1) !important;
}

.progressMenu {
  cursor: pointer;
}

.txtProgress {
  font-size: 12px;
}

.currentStep {
  color: #000;
  font-weight: bold;
  font-size: 15px;
}

#slide2,
#slide3,
#slide4,
#slide5,
#slide6,
#slide8 {
  display: none;
}

.animalName {
  display: inline-block;
}

.animalName::first-letter {
  text-transform: uppercase;
}

.select2 {
  display: block;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  height: 50px;
  display: flex;
  align-items: center;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 11px;
}

span.select2-selection.select2-selection--single:focus {
  background: var(--green3);
}

span.underligned {
  display: inline-block;
  color: #000;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

span.underligned:after {
  content: "";
  display: block;
  background: var(--green2);
  width: 104%;
  height: 8px;
  position: relative;
  top: -11px;
  right: 4px;
  margin-bottom: -11px;
  z-index: -1;
  border-radius: 50px;
  opacity: 1;
}

span.underligned.red:after {
  background: var(--color1);
  opacity: 0.4;
}

span.underligned.yellow:after {
  background: #e5ae15;
  opacity: 0.4;
}

span.underligned.bolder{
  font-weight: bold;
}


a.backLink {
  text-decoration: none;
  color: #3e3e3e;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-top: 12px;
  font-size: 18px;
  cursor: pointer;
}

.raceChien,
.raceChat,
.raceLapin {
  display: none;
}

.dateContainer {
  border: 1px solid #d3d3d3;
  border-radius: 6px;
  background-color: #fff;
}

/* FOR SEPERATE INPUTS */
.date-input-container {
  border: 1px solid #dee2e6;
  padding: 2px !important;
  border-radius: 5px;
  background: #fff;
  display: flex;
  align-items: center;
}
.date-input-container input {
  border: 0;
  outline: 0;
  text-align: center;
  width: 54px;
  padding: 10px !important;
}
.date-input-container input.day,
.date-input-container input.month {
  margin-right: 0px;
}
.date-input-container input.year,
.date-input-container .yearPersonne, .date-input-container .yearAssurer {
  width: 100% !important;
  text-align: left;
}

.date-input-container input.day,
.date-input-container input.month,
.monthPersonne,
.dayPersonne {
  text-align: left !important;
}

#formulaire .form-check input {
  padding: 10px !important;
  margin-right: 0px;
  margin-left: 0px;
  margin-top: 0;
}

.sms {
  font-size: 13px;
}

.bgcheck input {
    margin-top: 9px !important;
}

[name="sms"]:checked {
  background-color: var(--green1) !important;
  border-color: var(--green1) !important;
}

[name="sms"]:focus {
  border-color: var(--green1) !important;
  outline: 0;
  box-shadow: none !important;
}
input[type="checkbox"]:checked {
  background-color: var(--green1) !important;
  border-color: var(--green1) !important;
}

input[type="checkbox"]:focus {
  border-color: var(--green1) !important;
  outline: 0;
  box-shadow: none !important;
}

span.separator {
  color: #c5c5c5;
}

.btnStay {
  background-color: var(--color1) !important;
  border-color: var(--color1) !important;
  border-radius: 9px !important;
  font-size: 14px !important;
  padding: 8px 20px !important;
}

.btnQuit {
  background-color: #e3e3e3 !important;
  border-color: #cbcbcb !important;
  border-radius: 9px !important;
  font-size: 14px !important;
  padding: 8px 20px !important;
  color: #afafaf !important;
}

.tarifBox {
  background: #fff;
  box-shadow: 0 3px 7px rgb(0 0 0 / 6%);
  border-radius: 9px;
  padding: 21px 0;
  margin: 0 15px;
}

.tarifTitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tarifPrice {
  background-color: var(--green3);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 26px 0;
}

.price-rounded {
  font-size: 70px;
  font-weight: bolder;
  display: inline-block;
  margin-top: -24px;
  margin-bottom: -24px;
}

.price-decimal {
  display: inline-block;
  font-size: 18px;
  bottom: 3px;
  position: relative;
}

.parmois:after {
  content: "/MOIS";
  font-size: 14px;
  display: inline-block;
  position: relative;
  height: 0;
  width: 0 !important;
  color: #929292;
  font-weight: 500;
}

.composants {
  margin-top: 29px;
}

.composants ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: start;

  padding: 0 25px;
}
.composants li {
  font-size: 14px;
  color: #535353;
  font-weight: 500;
  margin-bottom: 10px;
}

.composants li.uncheck {
  color: #a7a7a7;
}

.composants li:before {
  content: "";
  display: inline-block;
  height: 13px;
  width: 15px;
  position: relative;
  top: 3px;
  margin-right: 8px;
  background-image: url(../media/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.composants li.option:before {
  content: "";
  display: none;
}

.composants li.uncheck:before {
  content: "";
  display: inline-block;
  height: 13px;
  width: 15px;
  position: relative;
  top: 3px;
  margin-right: 8px;
  background-image: url(../media/uncheck.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.composants li.showDetails:before {
  content: "";
  display: inline-block;
  height: 13px;
  width: 15px;
  position: relative;
  top: 1px;
  margin-right: 8px;
  background-image: url(../media/showmore.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.composants li.showLess:before {
  content: "";
  display: inline-block;
  height: 13px;
  width: 15px;
  position: relative;
  top: 1px;
  margin-right: 8px;
  background-image: url(../media/less.svg);
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.rdvAction {
  color: var(--color1);
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

.tarifActions {
  margin-top: 35px;
  padding: 0 23px;
  font-size: 19px;
}

.slick-prev:before,
.slick-next:before {
  color: #000 !important;
}

.slick-list {
  padding: 30px 0px;
}

.slick-next:before {
  content: "\f054";
  font-family: FontAwesome;
}
.slick-prev:before {
  content: "\f053";
  font-family: FontAwesome;
}

.tarifBox.recommanded {
  border: 4px solid var(--green1);
  padding-top: 0;
}

.recommandedBox {
  background: var(--green1);
  color: #fff;
  margin-bottom: 12px;
  padding: 8px 0;
  display: none;
  font-weight: 600;
  margin-bottom: 10px;
}

.tarifBox.recommanded .recommandedBox {
  display: block;
}

.slick-track {
  display: flex;
  align-items: flex-end;
}

.recap {
  color: #686868;
}

.packBox {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0px 10px 10px 0px rgb(0 0 0 / 6%);
  border: 2px solid #f1f1f1;
}

.packName {
  font-size: 30px;
  font-weight: bold;
  flex: auto;
}

.showDetails,
.showLess {
  cursor: pointer;
}

.promo {
  background-color: #a1c84e;
  color: #eef8d9;
  width: auto;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 9px 9px 0px 0px;
}

.promo + .packBox {
  background: #fff;
  border-radius: 0 9px 9px 9px;
  box-shadow: 0px 10px 10px 0px rgb(0 0 0 / 6%);
  border: 2px solid #f1f1f1;
}

.littleShadow {
  background: #fff;
  height: 120px;
  display: inline-block;
  width: 4%;
  float: right;
  box-shadow: -14px 0px 20px -2px #0000001f;
}

.detailTitle {
  font-size: 16px;
  font-weight: bolder;
  color: #272727;
  padding: 0px 0px 0px 25px;
}

.downloadable {
  color: #959595;
  font-size: 15px;
  margin-bottom: 15px;
  display: block;
  text-decoration: none;
}

.downloadable:before {
  content: "";
  display: inline-block;
  height: 18px;
  width: 24px;
  background-image: url(../media/pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 2px;
}

.grosComp li {
  display: flex;
  align-items: center;
  line-height: 16px;
}

.composants.grosComp li:before {
  width: 22px;
}

.assureur {
  font-size: 14px;
  color: #adadad;
  text-align: center;
}

.separAfter:after {
  content: "";
  float: right;
  background: #d7d7d7;
  width: 1px;
  height: 80px;
  display: inline-block;
  bottom: 111px;
  position: relative;
  margin-bottom: -110px;
}

.moreDetails {
  display: none;
}

.separShowMore {
  width: 70%;
  height: 1px;
  background-color: #dfdfdf;
  margin: auto;
  margin-bottom: 20px;
}

.successinput input,
.successinput input:focus {
  background-color: var(--green3) !important;
}

input.yearAssurer {
  width: 63px !important;
}

ul.listVilles {
  max-height: 200px;
  overflow-y: scroll;
  background-color: #fff;
  border-radius: 0 0 9px 9px;
  border-bottom: 15px solid #fff;
  box-shadow: 1px 3px 4px 0px #0000001c;
  list-style: none;
  padding: 15px;
  display: none;
  color: #6a6a6a;
  font-size: 14px;
}

ul.listVilles li {
  cursor: pointer;
  padding: 5px;
  border-bottom: 1px solid #ededed;
}

#villesCp, .racesList, #adresses {
  max-height: 176px;
  overflow-y: auto;
  background-color: rgb(255, 255, 255);
  list-style: none;
  padding: 0px 0px;
  border-radius: 4px;
  width: 100%;
  border: 1px solid rgb(165, 165, 165);
  margin-top: 8px;
  display: none;
}

.racesList, #adresses{
  max-height: 206px!important;
}

.villeSearchResult, .containerResult, .adressesResult {
  height: 0px;
  position: relative;
  z-index: 2;
}

ul#villesCp li, .racesList li, #adresses li {
  font-size: 16px;
  padding: 5px 15px;
  color: #303030;
  cursor: pointer;
}

ul#villesCp li:hover, .racesList li:hover, #adresses li:hover {
  color: var(--green1);
  transition: 0.3s;
  background-color: var(--green3);
  border-radius: 0;
}

.sms {
  display: block;
  font-size: 16px;
}

#formulaire #sms {
    padding: 10px !important;
    margin-right: 20px;
    margin-left: 0px;
    margin-top: 0;
}

.form-check {
  display: flex !important;
  align-items: center;
}

.form-check.bgcheck {
  display: flex !important;
  align-items: flex-start;
  background-color: #eaecf1;
  padding: 12px;
  border-radius: 10px;
  margin-top: 21px;
  font-size: 14px;
  border: 1px solid #dee2e6;
}

.assistanceImg {
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0px 9px 50px 0px #0000001f;
}

#aide .modal-header {
  margin: 0 !important;
  padding: 10px 15px;
}

.assistanteImg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.assistanteImg p {
  margin: 0;
  margin-right: 2px;
}

.divider {
  height: 2px;
  width: 80%;
  background-color: #ededed;
  margin: 12px auto;
}

button.btnPrecedent {
  background-color: #fff;
  border-color: var(--green2) !important;
  color: var(--green1);
  border-radius: 9px !important;
  font-size: 14px !important;
  padding: 8px 40px !important;
  padding-top: 8px !important;
  padding-right: 40px !important;
  padding-bottom: 8px !important;
  padding-left: 40px !important;
}

button.btnPrecedent:hover {
  color: var(--green1) !important;
  background-color: var(--green3) !important;
}

.croiseChien, .croiseChat {
  display: none;
  margin-top:20px;
}

#aide p {
  font-size: 12px;
}

.headerSepar {
  height: 1px;
  background-color: #e9e9e9;
  width: 100%;
  margin-top: 13px!important;
}

.slick-list{
  padding-top: 0;
}

.stepDescription a{
  color: var(--green1);
}

.confort{
  display: none;
}

.selectTarif {
  border-radius: 0!important;
  border: 0!important;
  border-bottom: 2px solid var(--green1)!important;
  background-color: transparent!important;
}

.selectTarif:focus {
  box-shadow: none!important;
}

.selectTarif option:hover {
  background-color: var(--green1)!important;
}

.nonassured {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  min-height: 72px;
}

.assured {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  min-height: 72px;
  flex-wrap: wrap;
  flex-direction: column;
}

.assured .assuredIcon{
  margin:0;
  margin-bottom: 10px;
}

.assuredIcon{
  margin-right: 10px;
  min-width: 37px!important;
  max-width: 37px!important;
}

.assuredIconBig {
  min-height: 60px;
  max-height: 60px;
  margin-bottom: 20px;
}

.leSubTitle {
  font-size: 12px;
  color: #767676;
  font-weight: bolder;
  letter-spacing: 3px;
}

.miniText {
  color: #a7a7a7;
  font-size: 14px;
}
.avantageTitle{
  font-weight: bold;
}

.option label {
  margin-left: 10px;
  margin-top: 6px;
}

.option .form-check{
  display: flex;
  align-items: center;
}

.option .form-check-input:checked {
  background-color: var(--green1) !important;
  border-color: var(--green1) !important;
  color: #000;
}

.option .form-check-input:focus {
  border-color: var(--green1)!important;
  outline: 0!important;
  box-shadow: none!important;
}

.assureurName{
  text-decoration: none;
  color: #959595;
  margin-bottom: 40px;
}

.fileDownload{
  text-decoration: none;
  color:#959595;
  font-size: 15px;
}

.fileDownload img{
  margin-right: 10px;
}

.fileDownload img {
  width: 16px;
}

.explications{
  background-color: #fff;
}

.slick-arrow {
  background: #fff;
  height: 30px;
  width: 30px;
  box-shadow: 0 0 5px 0px #adadad;
  border-radius: 100%;
}

.top5races{
  pointer-events: none;
}

.exclusionTitle {
  font-size: 16px;
  font-weight: bold;
  color: #cf9e16;
}

.conditions {
  font-size: 13px;
  color: #5e5e5e;
  overflow: hidden;
  display: none;
}

.showAlways {
  font-size: 13px;
  color: #5e5e5e;
  transition: 0.3s;
  box-shadow: inset 0px -5px 9px -8px #00000061;
  padding-bottom: 1px;
}

.showAll {
  box-shadow: inset 0 0 0 0 #00000061;
}

.readMore {
  position: relative;
  top: 6px;
  font-size: 15px;
  padding-bottom: 3px;
  margin: auto;
  color: #858585;
  cursor: pointer;
  border: 1px solid #dcdeed;
  display: inline-block;
  padding: 6px 60px;
  border-radius: 45px;
  margin-top: 10px;
}

.recap{
  cursor: pointer;
}

.imageAnimal.chien {
  height: 90px;
  width: 90px;
  background-image: url('../media/chien.png');
  border-radius: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.imageAnimal.chat {
  height: 90px;
  width: 90px;
  background-image: url('../media/chat.png');
  border-radius: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.imageAnimal.lapin {
  height: 90px;
  width: 90px;
  background-image: url('../media/lapin.png');
  border-radius: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.imageAnimal.autre {
  height: 90px;
  width: 90px;
  background-image: url('../media/autre.png');
  border-radius: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

a.editRecap {
  color: var(--color1);
  text-decoration: none;
}

a.editRecap svg path{
  fill: var(--color1);
}

.recapText{
  font-size: 15px;
}

.lessHeight {
  margin-bottom: -33px;
  position: relative;
  z-index: 99;
}

li.option, li.option label, li.option input{
  cursor:pointer;
}

li.option input + label {
  color: #a7a7a7!important;
}

li.option input:checked + label {
  color: #535353!important;
}

.miniRecap .tarifPrice {
  background: transparent;
  color: var(--green1);
  border-radius: 0 0 5px 5px;
}

.miniRecap .tarifTitle {
  margin-bottom: -1px;
  padding: 9px;
  color: #3a3a3a;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid #e9e9e9;
}

.miniRecap {
    box-shadow: 0 0 20px 0px #ddddddb3;
    background: #fff;
    border-radius: 15px;
}

.miniRecap .parmois:after {
  color: #a1a1a1;
}

.miniRecap strong{
  color:var(--green1);
}

.dateEffet {
  font-size: 14px;
  color: #918d8d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

span.effetDate {
  font-weight: 600;
  color: #000;
}

.dateeffeticon{
  max-width: 120px!important;
  margin:auto;
}

.btnEffet{
  width:100%;
  border:0;
  padding:15px 8px;
  border-radius: 9px;
  font-weight: 600;
}

.btnEffet.enregistrer {
  background-color: var(--color1);
  color: #fff;
}

.btnEffet.annuler {
  background-color: #e3e3e3;
  border: 1px solid #cdcdcd;
  color: #9b9b9b;
}

.form-check-label{
  cursor: pointer;
}

.currentSlide {
  height: 0;
  font-size: 12px;
  font-weight: bold;
}

.formLabelBold {
  font-size: 17px;
  font-weight: bolder;
  color: var(--color1);
}

.formLabelBold:before{
  content:"//";
  color:var(--color1);
  margin-right: 10px;
  font-size: 9px;
  position: relative;
  bottom: 3px;
}

.bgcheck a {
  text-decoration: underline;
  color: #000000;
  font-weight: 600;
}

.remerciement {
    background: #ffffff;
    border-radius: 9px;
    padding: 23px;
    box-shadow: 0 0 16px 0px #f1f1f1;
    font-size: 15px;
}

.remerciement a{
  color:var(--color1);
  text-decoration: underline;
}

.btnImg {
  height: 47px;
  margin-top: -17px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.input-group input{
  border-radius: 0 5px 5px 0!important;
}

.localisation{
    background: transparent!important;
    border: 0!important;
    width: 0!important;
    margin: 0!important;
    padding: 0!important;
    position: relative!important;
    z-index: 9!important;
    left: 18px!important;
    color: #606060!important;
}
/* End Erreur */
/* END Formulaire */


.input-group > input{
  border-radius: 5px 0 0 5px!important;
}

.accomodation .btnImg + div{
  font-size: 15px;
  margin-top:10px;
  padding: 5px;
}

.numbersfield{
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
}

.numbersfield input, .numbersfield input:focus-visible {
  padding: 0px!important;
  width: 40px;
  border: 0!important;
  text-align: center;
  outline:0!important
}

.trigNumber{
  border: 0;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.numbersfield input[type="number"] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.numbersfield input[type=number]::-webkit-inner-spin-button, 
.numbersfield input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
}

.m2::before{
  content:"m²";
  display: inline-block;
}

.surfaceSup, .depSup, .chemSup{
  display: none;
}

.miniClass .iconLabel {
  padding: 17px 15px!important;
}

.miniClass .checkedLabel {
  height: 0;
}

.customCloseBtn {
  background: var(--color1);
  border: 0;
  padding: 14px 50px;
  font-size: 16px;
  border-radius: 9px;
  color: #fff;
}

.sufpiece:after {
  content: "pièce(s)";
  position: relative;
  text-align: right;
  left: -12px;
  bottom: 38px;
  color: #a5a5a5;
  font-size: 15px;
  float: right;
  height: 0;
}

.sufdep:after {
  content: "dépendence(s)";
  position: relative;
  text-align: right;
  left: -12px;
  bottom: 38px;
  color: #a5a5a5;
  font-size: 15px;
  float: right;
  height: 0;
}

.sufm2:after{
  content: "m²";
  position: relative;
  text-align: right;
  left: -12px;
  bottom: 38px;
  color: #a5a5a5;
  font-size: 15px;
  float: right;
  height: 0;
  height: 0;
}

.rappelerMoi, .rappelerMoi p {
    font-weight: 600;
    color: #8B8B8B;
    text-decoration: none;
}

.primaryTitle{
  font-weight: bold;
  font-size: 22px;
}

.secondaryTitle{
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

.twoBtns {
    text-align: start;
    font-family: var(--font2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.twoBtns.centred {
    justify-content: center;
}


.tarifBox.recommanded {
    border: 2px solid var(--green1);
    padding-top: 0;
    border-radius: 18px;
}

.featured{
    visibility: hidden;
}


.tarifBox {
    /* box-shadow: 0 0 0; */
    padding: 10px!important;
}

.recommanded .featured {
    background-color: var(--green1);
    color: #fff;
    border-radius: 0 0 18px 18px;
    font-size: 12px;
    visibility: visible;
}

.featuredBox{
    position: relative;
    top: -10px;
    height: 0;
    width: 180px;
    margin: auto;
}

.tarifPrice{
    background-color: transparent;
    padding: 16px 0;
}


.price-rounded {
    font-size: 50px;
    margin-top: -15px;
}

.packTitle {
    font-weight: bold;
    margin-top: 20px;
    font-size: 18px;
    color: #454740;
}

/* .percentBox{
    border-top: 1px solid #dbdbdb;
    margin-top: 20px;
} */

.percent{
    font-weight: 400;
    font-size: 11px;
    padding-top: 20px;
    color: #383B33;
    text-align: start;
    margin-bottom: 8px;
}

.percentTxt {
    font-size: 12px;
    color: #787a72;
}

.accentBox {
    background-color: #F1F6F1;
    border-radius: 10px 10px 0 0;
    padding: 0px 10px;
    padding-bottom: 25px;
}
.recommanded .accentBox {
    background-color: var(--green3);
}

.tarifActions{
    padding: 0;
    margin-top: 15px;
    margin-bottom: 15px;
}

.separAction{
    background-color: #D7D7D7;
    height: 1px;
    width: 100%;
}

.composants {
    margin-top: 18px;
}

.composants ul {
    padding: 0;
}

.composants li:before, .composants li.uncheck:before{
    height: 15px;
    width: 15px;
}

.offerPack {
    color: #fff;
    font-weight: 600;
    background-color: #a1c84e;
    width: auto;
    display: inline-block;
    padding: 3px 15px;
    font-size: 12px;
    border-radius: 5px;
    border-radius: 9px 9px 0 0;
    position: relative;
    top: 10px;
    margin-top: 12px;
}

.customizeSelect{
  height: 32;
}

.checkedLabel img {
    width: 17px !important;
    height: 17px !important;
}

.croiseField {
    font-size: 16px;
    gap: 12px;
}

.croiseField input#croise {
    padding: 11px !important;
}

.croiseField label {
    font-size: 14px;
    padding-top: 5px;
}

.croiseField {
    margin-top: 12px;
}

.slideback  button{
    background-color: #fff;
    display: flex !important;
    gap: 9px;
    width: auto;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    border-radius: 8px;
    margin-top: 8px;
    border: 1px solid #e3e3e3;
    font-size: 15px;
    font-weight: 500;
}

.spaceContainer{
  height: 228px;
}

.spaceContainer.vertical {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

.tarifBoxer{
  background-color: #fff;
  padding: 16px;
  border-radius: 18px;
}

.tarifHeader{
  background-color: #EFF8D9;
  border-radius: 14px;
  height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../media/tarifheaderbg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.packprevention {
  display: flex;
  align-items: center;
  gap: 15px;
}

.preventionIcon {
  flex: 0 0 auto; /* taille naturelle */
  margin-right: 10px;
}

.preventionContent {
  flex: 1 1 auto;   /* prend tout l’espace possible */
  min-width: 0;     /* permet de forcer l’élargissement */
}

.preventionCheckbox {
  flex: 0 0 auto; /* reste compact à droite */
  margin-left: 10px;
}

.preventTitle{
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 5px;
  font-family: var(--font2);
}

.preventDescription {
    font-size: 12px;
}

.preventionCheckbox [role="switch"] {
    border-radius: 30px !important;
    font-size: 21px;
}

/* Met ton override APRÈS le CSS de Bootstrap */
.form-switch .form-check-input:focus:not(:checked) {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23000'/%3e%3c/svg%3e") !important;
}

.miniAccroche {
    font-size: 15px;
    font-weight: 600;
}

.loaderTitle {
    font-size: 20px;
    font-family: var(--font2);
    font-weight: 600;
}

.loaderSubTitle {
    font-size: 20px;
    font-family: var(--font2);
    font-weight: 600;
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.loaderSubTitle div {
    position: relative;
    top: 2px;
}

.tiragePhoto{
  height: 140px;
  width: 100%;
  background-image: url('../media/tiragephoto.png');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center;
  margin-top: 20px;
}

.progressLoader {
    margin: 70px 0;
}

.progressLoader .progress-bar {
    background-color: var(--color1);
}

.progressLoader {
    margin: 70px 0;
    height: 10px !important;
}

.progressLoader .progress-bar {
    background-color: var(--color1);
    border-radius: 50px;
}

.progressLoader {
    margin: 70px 0;
    height: 10px !important;
    background-color: #fff !important;
    box-shadow: 0 0 3px 0px #e1e1e1;
}

.loadAvantage {
    background-color: #fff;
    border: 1px solid #e3e3e3;
    padding: 12px;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    height: 100%;
}

.laodPartners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 70px!important;
}

.tarifBoxer.rdvBox{
  background-color: #F9F1F4;
}

.rdvTitle {
    font-size: 17px;
    font-weight: 600;
    margin-top: 5px;
}

.rdvSubTitle {
    font-size: 15px;
}

a.rdvBtn button {
    background-color: var(--color1);
    border: 0;
    padding: 14px 40px;
    border-radius: 9px;
    color: #fff;
    width: 100%;
    margin-top: 15px;
    font-family: var(--font2);
    font-size: 18px;
}

.rdvImage:after {
    content: "+62";
    background-color: var(--color1);
    color: #fff;
    font-size: 14px;
    padding: 4px;
    border-radius: 5px;
    font-family: var(--font2);
    font-weight: 600;
    position: relative;
    right: 12px;
}

.accordIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 5px;
    font-family: var(--font2);
    margin-bottom: 20px;
}

.accordIcon .sousTitle{
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.accordionBox .accordion {
  border: none; 
}

.accordionBox .accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
}

.accordionBox .accordion-item:last-of-type {
  border-bottom: none;
}

.accordionBox .accordion-button:not(.collapsed) {
    background-color: var(--green3);
    color: var(--green);
}

.accordionBox .accordion-button:focus {
    box-shadow: none;
}

.accordionBox .accordion-button::after {
  /* Icône fermée et ouverte en noir */
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: var(--bs-accordion-btn-icon); /* même icône en actif */
}

.downloadDocs a {
    display: inline-block;
    font-size: 13px;
    color: #4F5B33;
}

.nextStepFixed {
    background-color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    border: 1px solid #E8E8E8;
    padding: 10px;
    z-index: 9999;
}

button.continueBtn {
    background-color: var(--color1);
    color: #fff;
    width: 100%;
    padding: 10px;
    border: 0;
    border-radius: 9px;
    width: 100%;
    min-height: 60px;
    position: relative;
    font-size: 18px;
    font-family: var(--font2);
}

.nonIdentifierImg {
    height: 0;
}

.nonIdentifierImg img {
    position: relative;
    top: -15px;
}

.infoTel{
  border: 1px solid #D9AF25;
  background-color: #FAF5E1;
  border-radius: 9px;
  padding: 16px;
  color: #464646;
  font-family: var(--font2);
  display: flex;
  align-items: center;
  gap: 14px;
}

.stepContainer {
    height: calc(100vh - 61px);
}
.stepContainer .row {
    height: calc(100% - 61px);
    align-content: flex-start;
}

.pourInfo {
    background-color: #E8EEF1;
    border-radius: 9px;
    padding: 15px;
}

.pourInfo.bienvenue {
    background-color: #fff0f5;
}

.piTitle {
    font-size: 14px;
    font-weight: 600;
}

.piDescription {
    font-size: 13px;
}

.stepCta{
  position: fixed;
  bottom: 0;
  margin-bottom: 19px;
}

.miniPhoneIcon {
    height: 0 !important;
    width: 0;
    position: absolute;
}

.theMiniIcon {
    height: 42px;
    width: 42px;
    /* background-color: var(--green2); */
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -5px;
    margin-right: 12px;
}

.theMiniIcon svg {
    width: 22px;
    fill: #67724c;
}

.stepCta {
    background-color: #f9fafb;
    margin: 0;
    padding: 10px 10px;
    }

    .selfassurance {
    margin-bottom: 120px;
}

.bigIcon .iconLabel {
    min-height: 90px !important;
}

.bottomSpacer {
  margin-bottom: 120px!important;
}

#suggestions {
  background-color: #fff;
  margin-bottom: 0!important;
  border-radius: 4px 4px 0 0!important;
}

#adresses, #suggestions, #villesCp, .racesList {
  max-height: 176px;
  overflow-y: auto;
  padding: 0;
  border-radius: 4px;
  width: 100%;
  border: 1px solid #a5a5a5;
  margin-top: 8px;
}

#adresses li, #suggestions li, .racesList li, ul#villesCp li {
  font-size: 16px;
  padding: 5px 15px;
  color: #303030;
  cursor: pointer;
}

#adresses li:hover, #suggestions li:hover, .autreAddress:hover, .racesList li:hover, ul#villesCp li:hover {
  color: var(--green1);
  transition: .3s;
  background-color: var(--green3);
  border-radius: 0;
}

.autreAddress {
  background: #fff;
  padding: 5px 15px;
  border: 1px solid #a5a5a5;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  font-weight: 700;
  font-size: 13px;
  color: #5c5c5c;
  cursor: pointer;
  font-size: 16px;
}
.adressesResult, .autoshow, .containerResult, .villeSearchResult {
  height: 0;
  position: relative;
  z-index: 110;
}

button.adresseRec {
  padding: 15px 50px;
  border-radius: 9px;
  background-color: #d1d1d1;
  color: #8b8b8b;
  border: 1px solid #bdbdbd;
  width: 100%;
}

.VotreCodepostale {
    display: none;
}

.preventDescription a {
    color: #000;
    font-weight: 600;
}

.packprevention.active {
    background-color: var(--green3);
}

.bigIcon .btnImg {
    margin-bottom: 7px;
}

.oupsTitle{
  font-size: 30px;
  font-weight: 600;
  font-family: var(--font2);
  text-align: center;
  line-height: 30px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.oupsContent {
    height: 100vh;
    display: flex;
    align-items: center;
}

.txtOups {
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
    margin-bottom: 30px;
}

.oupsCta{
  text-align: center;
}

.welcomeBloc {
    height: 0;
    /* margin: auto;
    text-align: center; */
}

.offreBloc {
    background-color: #fff;
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    top: -25px;
    padding: 0px 20px;
    border-radius: 30px;
    box-shadow: -2px 1px 4px 0px #b7cbd6;
}

.satisfaction img {
    width: 90px;
    position: relative;
    bottom: 2px;
}

.satisfaction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    margin-top: 10px;
}

.listeRem {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.singleRem {
    background-color: #DDEABD;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 400;
    border-radius: 50px;
    align-items: center;
    padding-left: 20px;
}

.singleRem.total{
  font-weight: 600;
}

.tarifBoxer.green {
    background-color: #F2F7E6 !important;
    padding: 10px 50px;
}

.tarifBoxer.blue {
    background-color: #E8F0F6 !important;
    padding: 10px 20px;
}

.tarifBoxer.blue.chien{
  background-image: url('../media/dogowner.png');;
}

.priceRem {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    border-radius: 50px;
    background-color: #CBE09B;
}

.singleRem.self {
    background-color: #A1C84E;
    color: #fff;
    font-weight: 600;
}

.singleRem.self .priceRem {
    background-color: #7FA235;
}

.remListe {
    width: 100%;
    position: relative;
    margin-bottom: 38px;
}

.grandLine {
    width: 1px;
    height: 140px;
    position: absolute;
    background: #00000024;
    left: 30px;
    top: 20px;
}

.singlePros {
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
}

.prosTitle {
    font-weight: 600;
    color: #000;
    font-size: 16px;
    font-family: var(--font2);
}

.prosDescription{
  font-size: 12px;
}


.tarifBoxer.blue.chien {
    background-image: url(../media/dogowner.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 260px;
}

.redirectTitle {
    font-size: 25px;
    font-weight: 600;
    font-family: var(--font2);
    line-height: 28px;
    margin: 4px auto;
}

.redirectSubTitle {
    font-size: 18px;
    font-family: var(--font2);
}

.redirectMsg {
    color: #3a3a3a;
    padding: 15px;
    border-radius: 9px;
    margin: 42px auto;
}

.signImg {
    height: 120px;
    margin: 20px auto;
}

.redirectsubMsg {
    font-family: var(--font2);
    color: #7A7A7A;
    margin: 5px auto;
}

.loadTitle {
    font-weight: 600;
    font-family: var(--font2);
}

.redirectionIcon i {
    font-size: 27px;
}

.loadSubTitle {
    font-size: 14px;
}

.problemeRdvBtn {
    background-color: var(--color1);
    color: #fff;
    border: 0px;
    border-radius: 9px;
    padding: 10px;
    margin-bottom: 10px;
    font-family: var(--font2);
    font-size: 16px;
    width: 100%;
    display: block;
}

a.problemeTelRdv {
    color: var(--color1);
    font-family: var(--font2);
    font-size: 16px;
}

.problemeCta {
    margin-top: 50px;
}

.singleArgum {
    display: flex;
    align-items: center;
    font-size: 13px;
    text-align: left;
    gap: 9px;
    color: #6B6B6B;
}

.argums {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button.aideBtn {
    font-size: 16px;
    font-family: var(--font2);
    color: #fff;
    background-color: var(--green1);
    border: 0;
    border-radius: 9px;
    padding: 16px;
    line-height: 23px;
}

button.aideBtn.pink {
    background-color: var(--color1);
}

.singAv {
    text-align: center;
}

.singAv {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #818181;
}

.hashtag {
    color: var(--color1);
}

.bigIcon {
    min-height: 113px !important;
}

@media (max-width: 576px) {
      button.aideBtn {
        padding: 6px;
    }
    .tarifBoxer.blue.chien{
      background-image: none;
    }
    a.rdvBtn button{
      padding: 14px 10px;
    }
    .loaderTitle {
        font-size: 16px;
    }
    .tiragePhoto{
      height: 100px;
    }
    .progressLoader {
      margin: 30px 0;
      height: 10px !important;
      background-color: #fff !important;
      box-shadow: 0 0 3px 0px #e1e1e1;
    }
    .loaderSubTitle {
      font-size: 16px;
    }
    .loadAvantage div {
      font-size: 13px;
    }
    .laodPartners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 16px !important;
    }
    #formulaire .iconLabel {
    padding: 16px 4px !important;
    }
    .firstBtn, .nextBtn{
      font-size: 18px;
    }

    .stepCta {
    background-color: #f9fafb;
    margin: 0;
    padding: 10px 10px;
    }
    .preventionCheckbox{
      margin-left: 0;
    }

    .preventionCheckbox .form-switch {
    padding-left: 0;
    }
    .tarifBoxer.green {
    padding: 10px 20px;
  }
}