/****  Gestion animation des accordéons  *******/

.accordion-content,
.slidable-block {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.block-accordion.open .accordion-content,
.slidable-block.open {
  max-height: 1000px;
  /* valeur haute arbitraire */
  opacity: 1;
}

.block-accordion.open .evanescent-title {
  opacity: 0;
  visibility: hidden;
  /* évite les interactions clavier/souris */
  height: 0;
  transition: all 0.3s ease;
}

.total-cost-block {
  opacity: 0;
  visibility: hidden;
  /* évite les interactions clavier/souris */
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.block-accordion.open .total-cost-block {
  opacity: 1;
  visibility: visible;
}

/**** Fin - Gestion animation des accordéons  *******/

/**** Gestion animation du loader  *******/
.lds-ring {
  /* change color here */
  color: #1DD0A0;
}

.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid currentColor;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/**** Fin - Gestion animation du loader  *******/
/*page de connexion**/
.step-0 {
  padding: 40px;
  background: white;
  border-radius: 40px;
}

.step-0 .accordion-trigger .title {
  font-weight: 500;
  margin-bottom: 5px;

}

.step-0 .accordion-trigger .title img {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

.step-0 .accordion-trigger {
  text-align: center;
  background: #eaeaff;
  padding: 20px;
  font-size: 20px;
  color: #002461;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}

.step-0 .accordion-trigger:hover * {
  color: white;
  cursor: pointer;
}

.step-0 .accordion-trigger:hover {
  color: white;
  background: #002461;
}

.step-0 .block-accordions {}

.block-accordion.open .accordion-content {
  margin-top: 20px;
}

.block-accordion.open .accordion-content label {}

.step-0 .block-accordion.open .accordion-trigger * {
  color: white;
}

.step-0 .block-accordion.open .accordion-trigger {
  color: white;
  background: #002461;
}

/***design formulaire**/
body {
  font-family: "Poppins", Sans-serif;
}

body .form-step__container {
  display: block;
  margin-top: 40px;
}

body .step_navigation {
  width: 100%;
  display: block;
  margin-top: 20px;
  text-align: right;
}

.form-menu__wrapper {
  width: 19%;
  display: inline-block;
  vertical-align: top;
  font-family: "Poppins", Sans-serif;
  color: #002461;
  position: relative;
}

.form-menu__wrapper:before {
  content: "";
  width: 2px;
  background: #002461;
  top: 0;
  bottom: 0;
  position: absolute;
  left: 3px;
  opacity: 0.7;
  z-index: -2;
}

.form-step_content {
  width: 80%;
  display: inline-block;
  vertical-align: top;
  padding-left: 40px;
}

.form-menu__wrapper div.form-menu__item {
  opacity: 1;
  display: flex;
  align-items: center;

  margin-bottom: 30px;
}

.form-menu__wrapper div.form-menu__item {
  cursor: pointer;
}

.form-menu__wrapper div.form-menu__item .item__label {
  opacity: 0.5;
}

.form-menu__wrapper div.form-menu__item:hover .item__label,
.form-menu__wrapper div.form-menu__item.step-ongoing .item__label {
  opacity: 1;
}

.form-menu__wrapper div.form-menu__item:hover,
.form-menu__wrapper div.form-menu__item.step-ongoing {
  opacity: 1;
}

.form-menu__wrapper div.form-menu__item.step-ongoing .item__label {
  font-weight: 600;
}

.form-menu__wrapper div.item_chip {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #002461;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-right: 30px;

}

.form-menu__wrapper div.item_chip:before {
  content: "";
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  background: #d3dae6;
  position: absolute;
  z-index: -1;
  border-radius: 100px;
}

.form-menu__wrapper .step-ongoing div.item_chip:before,
.form-menu__wrapper div.item_chip:hover:before {
  background: #798fb4
}

.step-title img {
  width: 30px;
  height: 30px;
}

.step-title {
  margin: 0;
  color: #002461;
  display: flex;
  gap: 20px;
  font-size: 30px;
  align-items: center;
}

.block-title {
  margin: 0;
  margin-bottom: 20px;
  font-size: 30px;
  color: #002461;
}

.service-group__title {
  margin: 0;
  margin-bottom: 10px;
  font-size: 24px;
  color: #002461;
}

.step-part {
  padding: 40px;
  border: 1px solid #eaeaff;
  border-radius: 30px;
  margin-top: 20px;
  background: white;
}

body .form-step_content select,
body .form-step_content textarea,
body .form-step_content input,
body .step-part textarea,
body .step-part select,
body .step-part input {
  border: 1px solid #eaeaff;
  text-align: left;
  background-color: white;
  ;
  color: #002461;
  border-radius: 100px 100px 100px 100px;
  text-indent: 5px;
  font-size: 16px;
  color: #002461;
  width: 100%;
  padding: 15px;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  display: block;
}

body .step-part textarea {
  border-radius: 20px;
  height: 80px;
}

body .step-part input::placeholder {
  font-size: 16px;
  color: #002461;
  opacity: 0.7;
  font-family: 'Poppins', sans-serif;
}

body .step-part .row br {
  display: none;
}

body .step-part .row {
  display: flex;
  gap: 5px;
  position: relative;
}

body .form-step_content label,
body .step-part label {
  font-size: 20px;
  color: #002461;
  opacity: 0.7;
  font-family: 'Poppins', sans-serif;
}

.notice {
  font-style: italic;
  color: #002461;
  opacity: 0.7;
  font-weight: 300;
  font-size: 14px;
  display: block;

}

.bike .group-input {
  margin-top: 10px;
  padding-top: 10px;
  width: 50%;
}

.step-part.bike .row-price>div,
.step-part.bike .row-price {
  width: 100%;
  border: none;
  display: block;

}

.step-part.bike .row-price>div {
  margin: 0;
  padding: 0;
}

.step-part.bike .row-price {
  padding: 20px;
  background: #eaeaff;
  border-radius: 20px;
}

/***step tarifs location**/
body .step-part * {
  font-family: 'Poppins', sans-serif;
  color: #002461;
}

.calculated-cost,
.number {
  font-size: 20px;
  display: block;
  font-weight: 600;
  color: white;
}

.calculated-cost__wrapper {
  text-align: right;
  color: white;
}

.duration__wrapper span {
  color: white;
}

body .step-part.rates .row {
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  background: #002461;
  border-radius: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

body .step-part.rates .row div.calculated-cost__wrapper *,
body .step-part.rates .row div,
body .step-part.rates .row div .notice span {
  color: white;
}

.costs__wrapper {
  width: 400px;
  position: relative;
  padding: 30px;
}

.duration__wrapper {
  text-align: center;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
}

.duration__wrapper:after {
  content: '';
  width: 1px;
  position: absolute;
  background-color: white;
  top: 30px;
  right: 0;
  bottom: 30px;
}

body .step-part.rates .row div.calculated-cost__wrapper .title>span {
  font-weight: 700;
  margin-right: 5px;
}

body .step-part.rates .row div.calculated-cost__wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #001fff;
  border-radius: 20px;
  text-align: center;
  color: white;
}

.costs__wrapper label {
  position: absolute;
  right: 45px;
  top: 80px;
}

body .step-part .costs__wrapper input {
  border-radius: 5px;
  padding: 15px;
}

.costs__wrapper .title {
  margin-bottom: 10px;
}

body .form-step_content .step-part .costs__wrapper label {
  font-size: 15px;
}

.costs__wrapper .notice {
  text-align: right;
}

body .elementor .elementor-element .form-step_content input[type="checkbox"],
body .elementor .elementor-element .step-part input[type="checkbox"],
body .elementor .elementor-element .step-part .group-input input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  min-height: 20px;
  border: 1px solid #002461;
  padding: 5px;
  display: flex;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

body .elementor .elementor-element .form-step_content input[type="checkbox"] {
  float: left;
  margin-right: 5px;
}

body .accordion-content br {
  display: none;
}

body .accordion-content {
  font-family: 'Poppins', sans-serif;
  ;
}

.lost_password {
  text-align: center;
}

.lost_password a {
  text-decoration: underline;
}

body .accordion-content button {
  padding: 15px 30px;
  font-size: 18px;
  display: block;
  width: 100%;

}

body .elementor .elementor-element .services .group-input {
  display: flex;
  align-items: center;
  gap: 15px;
}

body .elementor .elementor-element .form-step_content input[type="checkbox"]:checked:before,
body .elementor .elementor-element .step-part input[type="checkbox"]:checked:before {
  top: 4.5px;
  left: 4.5px;
}

body .step-part.services .row {
  display: block;
}

body .step-part.services .row .slidable-block label {
  font-size: 15px;
}

body .step-part.services .row .slidable-block input {
  width: 200px;
}

.kc_btn_submit,
.kc_btn_prev,
.kc_btn_next {
  background: #001fff;
  padding: 15px;
  border-radius: 10px;
  color: white;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  vertical-align: middle;
}

.kc_btn_prev {
  border: 1px solid #002461;
  color: #002461;
  background: none;
}

.kc_btn_next {}

.kc_btn_submit:hover,
.kc_btn_next:hover,
.kc_btn_prev:hover {
  background: #002461;
  color: white;
  cursor: pointer;
}

.kc_btn_prev:hover:hover {
  color: white;
  background: #002461;
}

body .step-part select.error,
body .step-part input.error {
  border-color: rgb(219, 84, 84);
}

body .step-part .error-message {
  font-size: 12px;
  color: rgb(219, 84, 84);
  font-weight: 300;
  position: absolute;
  bottom: 0;
}

body .form-step_content input[type="radio"],
body .step-part input[type="radio"] {
  border: none;
  background: none;
  box-shadow: none;
  margin-bottom: 0;
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  width: auto;
  vertical-align: middle;
}

.bike-condition .form-group label {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0;
}

.bike-condition .form-group {
  width: auto;
  margin-bottom: 15px;
}

body .step-part .accordion-trigger .title span,
body .step-part .accordion-trigger .title {
  color: white;
}

body .step-part .accordion-radio-wrapper:hover {
  opacity: 1;
}

.accordion-trigger {
  background: #002461;
  color: white;
  font-size: 18px;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

#add-pictures .accordion-radio {
  display: none;
}

.block-accordion.open .accordion-content .explanatory-notes {
  margin-bottom: 30px;
}

.block-accordion.open .accordion-content .notice {
  margin-bottom: 10px;
}

.add-img {
  border: 2px dashed #eaeaff;
  border-radius: 20px;
  padding: 20px;
}

body .step-part .add-img .row {
  display: block;
  margin-top: 15px;
}

body .step-part.lock .row {
  display: inline-block;
  width: 49%;
  vertical-align: bottom;
}

.kc_btn_cancel {
  display: inline-block;
  background: rgba(219, 84, 84, 0.3);
  text-align: center;
  margin: 0 auto;
  border-radius: 10px;
  padding: 15px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.kc_btn_cancel:hover {
  background: rgb(219, 84, 84);
  cursor: pointer;
}

body .business-proposal .step-part .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body .step-part input[type="date"] {
  width: 300px;
}

body .step-part br {
  display: none !important;
}

.projected-monthly-payments .row.select-duration {
  border: 1px solid #eaeaff;
  border-radius: 20px;
  cursor: pointer;
  padding: 20px;
  margin-bottom: 10px;
}

.projected-monthly-payments .row.select-duration:hover {
  border-color: #002461;
}

.projected-monthly-payments .row.select-duration .form-group {
  display: flex;
  align-items: center;

}

.projected-monthly-payments .row.select-duration .form-group * {
  display: inline-block;
  width: auto;
}

.projected-monthly-payments .row.select-duration .form-group label {
  font-size: 20px;
  font-weight: 600;
}

.projected-monthly-payments .row.select-duration .form-group label span {
  display: block;
  font-size: 15px;
  font-weight: 400;
}

body .rental-amount {
  font-size: 25px;
  color: #002461;
  font-weight: 700;
}

.service-detail__item {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

/**infos clients**/
body .step-4 .form-group {
  display: block;
  width: 100%;
}

.insurance-button span,
.kc-yousign-button span,
.kc-greenleaze-button .wp-btn {
  padding: 20px;
  color: white;
  margin-top: 20px;
  background: #001fff;
  border-radius: 100px;
  display: block;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  font-family: 'Poppins', sans-serif;

}

.kc-yousign-button span p {
  margin: 0;
}

.insurance-button span:hover,
.kc-yousign-button span:hover,
.kc-greenleaze-button .wp-btn:hover {
  background: #1dd0a0;
}

.insurance-button svg,
.kc-yousign-button svg,
.financing-audit-button svg {
  display: none;
}

#kc-helloc-velo-form p,
#kc-helloc-velo-form ul li {
  font-size: 14px;
}

.note-center {
  text-align: center;
  font-weight: 500;
  background: #eaeaff;
  padding: 20px;
  border-radius: 20px;
  font-size: 14px;
}

.note-center .icon {
  display: block;
  margin-bottom: 10px;
  font-size: 30px;
}

body .step-part .explanatory-notes em a {
  text-decoration: underline;
}

body .step-part .explanatory-notes em a:hover {
  color: #1DD0A0;
}

body .step-part .explanatory-notes em {
  font-size: 13px;
  text-align: center;
  display: block;
}

body .contract-iframe-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  background: #002461;
  color: white;
  padding: 10px;
  border-radius: 10px;
}

/**etapes 8*/
body .kc-form__step.step-8.final .step-part .row {
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
}

body .kc-form__step.step-8.final .step-part .contract-reminder__item {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

body .kc-form__step.step-8.final .step-part .icon {
  margin-bottom: 10px;
}

body .kc-form__step.step-8.final .step-part .contract-reminder__item .content .top-info {
  font-size: 13px;
  font-weight: 600;
}

body .kc-form__step.step-8.final .step-part .contract-reminder__item .content div {
  text-align: left;
}

body .kc-form__step.step-8.final .step-part .contract-reminder__item .icon {
  margin: 0;
  width: 50px;
  height: 50px;
  background: #eaeaff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

body .kc-form__step.step-8.final .step-title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
  display: block;
}

body .kc-form__step.step-8.final .step-title span.first {
  display: block;
  text-align: center;
  font-size: 30px;
  line-height: 35px;
}

body .kc-form__step.step-8.final .step-part a.pdf_loc_btn {
  background: #001fff;
  padding: 15px;
  border-radius: 10px;
  color: white;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  vertical-align: middle;
}

body .kc-form__step.step-8.final .step-part a.pdf_loc_btn:hover {
  background: #002461;
  color: white;
  cursor: pointer;
}

@media (max-width: 1280px) {
  body .step-part label {
    font-size: 16px;
  }

  .notice {
    font-size: 12px;
  }

  .costs__wrapper {
    width: 350px;
  }

  .calculated-cost,
  .number {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .form-menu__wrapper {
    display: block;
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 10px;
    margin-bottom: 30px;
  }

  .form-step_content {
    width: 100%;
    padding: 0;
  }

  .form-menu__wrapper div.form-menu__item {
    min-width: 200px;
    width: 200px;
  }

  .form-menu__wrapper div.form-menu__item .item__label {
    font-size: 13px;
  }

  .form-menu__wrapper div.item_chip {
    margin-right: 18px;
  }

  .form-menu__wrapper:before {
    display: none;

  }

  .form-menu__wrapper {
    border-bottom: 5px solid white;
  }

  .calculated-cost,
  .number {
    font-size: 18px;
  }

  .costs__wrapper,
  body .step-part.rates .row div.calculated-cost__wrapper {
    padding: 10px;
  }

  .costs__wrapper label {
    top: 58px;
  }
}


@media (max-width: 768px) {
  .step-part {
    padding: 20px;
    border-radius: 20px;
  }

  .step-title {
    font-size: 25px;
    line-height: 30px;
  }

  .block-title {
    font-size: 18px;
    line-height: 25px;
  }

  .service-group__title {
    font-size: 16px;
    line-height: 25px;
  }

  body .step-part textarea,
  body .step-part select,
  body .step-part input,
  body .step-part label {
    font-size: 14px;
  }

  .bike .group-input,
  body .business-proposal .step-part .row,
  body .step-part .row {
    display: block;
    width: 100%;
  }

  body .step-part .rental-group span,
  body .step-part .rental-group div {
    color: white;
  }

  .step-title img {
    width: 22px;
  }

  body .step-part .rental-group {
    color: white;
    background: #002461;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
  }

  body .rental-amount {
    font-size: 20px;
  }

  body .step-part div,
  body .step-part p,
  body .step-part ul li {
    font-size: 13px;
    line-height: 17px;
  }

  body .step-part.certifications .row {
    display: flex;
    gap: 5px;
  }

  .kc_btn_submit,
  .kc_btn_prev,
  .kc_btn_next,
  .kc_btn_cancel {
    font-size: 13px;
    padding: 10px;
  }

  .duration__wrapper {
    width: 120px;
  }

  .costs__wrapper {
    width: 300px;
  }
}

@media (max-width: 643px) {
  body .form-step_content .step-part.rates .row {
    display: block;
    text-align: center;
  }

  .costs__wrapper,
  .duration__wrapper {
    width: 100%;
  }

  .duration__wrapper:after {
    bottom: 0;
    top: auto;
    right: auto;
    left: auto;
    width: 150px;
    height: 1px;
  }

  .costs__wrapper,
  body .step-part.rates .row div.calculated-cost__wrapper {
    padding: 20px;
  }

  body .form-step_content input[type="checkbox"],
  body .elementor .elementor-element .form-step_content input[type="checkbox"],
  body .elementor .elementor-element .step-part input[type="checkbox"],
  body .elementor .elementor-element .step-part .group-input input[type="checkbox"] {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px;
    min-height: 15px;
    border: 1px solid #002461;
    padding: 5px;
    display: flex;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
  }

  body .elementor .elementor-element .form-step_content input[type="checkbox"]:checked:before,
  body .elementor .elementor-element .step-part input[type="checkbox"]:checked:before {
    top: 3px;
    left: 2.5px;
  }

  body .step-part.rates .row div.duration__wrapper {
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 15px;
  }

  body .form-step_content .step-part .costs__wrapper label {
    font-size: 12px;
  }

  body .step-part .costs__wrapper input {
    border-radius: 10px;
    padding: 15px;
  }

  .costs__wrapper label {
    top: 65px;
    right: 30px;
  }

  body .step-part.rates .notice {
    text-align: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 490px) {
  .projected-monthly-payments .row.select-duration .form-group label span {
    font-size: 12px;
    margin-top: 15px;
  }

  .step-title {
    font-size: 22px;
    gap: 5px;
  }

}

/* HTML: <div class="loader"></div> */
.loader-btn {
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #FFF #001fff;
  animation: l1 1s infinite;
  display: none;
}

@keyframes l1 {
  to {
    transform: rotate(.5turn)
  }
}

.row-yousign {
  flex-direction: column;
  width: 100%;
}

.row-yousign iframe {
  height: 650px;
}

.link-edit-options {
  cursor: pointer;
  background: #002461;
  padding: 10px;
  border-radius: 10px;
  color: white !important;
}

.vendor-dashboard-buttons .button {
  background-color: #002461;
  color: white;
  padding: 12px 8px;
}

.vendor-dashboard-buttons .button:hover {
  background-color: #1DD0A0;
  color: white;
  text-decoration: none !important;
}