/* Base required imports
--------------------------------------------- */
/* Bootstrap
--------------------------------------------- */
/* Import variables and mixins
--------------------------------------------- */
/* Bootsrap required imports & components
--------------------------------------------- */
.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
  color: var(--bs-alert-link-color);
}

.alert-dismissible {
  padding-right: 3rem;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  --bs-alert-color: var(--bs-primary-text-emphasis);
  --bs-alert-bg: var(--bs-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-border-subtle);
  --bs-alert-link-color: var(--bs-primary-text-emphasis);
}

.alert-secondary {
  --bs-alert-color: var(--bs-secondary-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-text-emphasis);
}

.alert-success {
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis);
}

.alert-info {
  --bs-alert-color: var(--bs-info-text-emphasis);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text-emphasis);
}

.alert-warning {
  --bs-alert-color: var(--bs-warning-text-emphasis);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text-emphasis);
}

.alert-danger {
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis);
}

.alert-light {
  --bs-alert-color: var(--bs-light-text-emphasis);
  --bs-alert-bg: var(--bs-light-bg-subtle);
  --bs-alert-border-color: var(--bs-light-border-subtle);
  --bs-alert-link-color: var(--bs-light-text-emphasis);
}

.alert-dark {
  --bs-alert-color: var(--bs-dark-text-emphasis);
  --bs-alert-bg: var(--bs-dark-bg-subtle);
  --bs-alert-border-color: var(--bs-dark-border-subtle);
  --bs-alert-link-color: var(--bs-dark-text-emphasis);
}

/* Form fields
--------------------------------------------- */
.estimate-form .answer.answer-FormFieldBirthday {
  text-align: center;
}

.estimate-form .answer.answer-FormFieldBirthday input {
  width: 100%;
  max-width: 45rem;
  text-align: left;
  margin-left: 2rem;
  margin-right: 2rem;
}

.estimate-form .answer.answer-FormFieldBirthday .date {
  position: relative;
  display: inline-block;
  max-width: 45rem;
  margin: auto;
}

.estimate-form .answer.answer-FormFieldBirthday .date svg {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
}

@media (max-width: 991.98px) {
  .estimate-form .answer.answer-FormFieldBirthday input {
    max-width: 100%;
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .estimate-form .answer.answer-FormFieldBirthday .date {
    max-width: 100%;
  }
}

.estimate-form .answer.answer-FormFieldImage .answers-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item {
  text-align: center;
  background-color: #F5F5F5;
  border-radius: .25rem;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.15);
  border: solid 2px #F5F5F5;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item.multi-choice {
  position: relative;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item.multi-choice:after {
  content: "";
  color: #ffffff;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 25px;
  height: 25px;
  background: #fff;
  top: 15px;
  right: 15px;
  border-radius: 5px;
  border: solid 1px #00BF63;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item.selected.multi-choice:after {
  --qt-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  background-color: #00BF63;
  background-image: var(--qt-form-check-bg-image);
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item label {
  cursor: pointer;
  flex-direction: column;
  padding: 0rem .2rem 1rem .2rem;
  gap: 20px;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item label .icon {
  display: flex;
  justify-content: center;
  width: auto;
  height: auto;
  margin-top: -20px;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item label .icon img {
  max-width: 100%;
  height: auto;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item label .icon .icon-svg {
  display: block;
  max-height: 135px;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item label .icon .icon-svg svg {
  display: block;
  max-width: 100%;
  max-height: 135px;
  width: 135px;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item label .icon.icon-hover {
  display: none;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item label .label {
  font-family: "Inter-400", "Inter-fallback", sans-serif;
  font-size: 1.25rem;
  color: #141313;
  text-align: center;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item input {
  display: none;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item:hover {
  border-color: #00BF63;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item:hover label .icon {
  display: none;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item:hover label .icon.icon-hover {
  display: flex;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item:hover label .label {
  color: #00BF63;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item.selected, .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item:hover {
  background: #E5F9EF;
  border: solid 2px #00BF63;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item.selected label .icon, .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item:hover label .icon {
  display: none;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item.selected label .icon.icon-hover, .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item:hover label .icon.icon-hover {
  display: flex;
}

.estimate-form .answer.answer-FormFieldImage .answers-list .answer-item.selected label .label, .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item:hover label .label {
  color: #00BF63;
}

@media (min-width: 992px) {
  .estimate-form .answer.answer-FormFieldImage .answers-list {
    align-items: stretch !important;
  }
  .estimate-form .answer.answer-FormFieldImage .answers-list .block-answer {
    display: flex;
  }
  .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
  .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item label {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 991.98px) {
  .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item label {
    flex-direction: row;
    padding: 1rem;
    gap: 12px;
  }
  .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item label .icon {
    margin-top: -30px;
  }
  .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item label .icon img {
    max-width: 90px;
    height: auto;
  }
  .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item label .label {
    text-align: left;
  }
  .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item.multi-choice {
    overflow: visible !important;
  }
  .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item.multi-choice:after {
    top: 0;
    right: unset;
    right: 0;
    transform: translate(-15px, -12px);
  }
}

@media (hover: none) and (pointer: coarse) {
  .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item:not(.selected):hover {
    background-color: #F5F5F5;
    border: solid 2px #F5F5F5;
  }
  .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item:not(.selected):hover label .icon {
    display: flex;
  }
  .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item:not(.selected):hover label .icon.icon-hover {
    display: none;
  }
  .estimate-form .answer.answer-FormFieldImage .answers-list .answer-item:not(.selected):hover label .label {
    color: #000;
  }
}

.estimate-form .answer.answer-FormFieldNumber .input-group-number {
  width: 75%;
  max-width: 25rem;
  margin: 0 auto;
}

.estimate-form .answer.answer-FormFieldNumber .input-group-number .number-input {
  border: none;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.15) inset;
  font-family: "Inter-300", "Inter-fallback", sans-serif;
}

.estimate-form .answer.answer-FormFieldNumber .input-group-number .number-input::placeholder {
  font-family: "Inter-300", "Inter-fallback", sans-serif;
  color: #141313;
  opacity: 40%;
  font-size: 1.25rem;
}

.estimate-form .answer.answer-FormFieldNumber .input-group-number .suffix {
  border: none;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.15) inset;
  font-family: "Inter-500", "Inter-fallback", sans-serif;
  background-color: #F5F5F5;
}

.estimate-form .answer.answer-FormFieldNumber .field-quantity input {
  width: 90px;
}

.estimate-form .answer.answer-FormFieldNumber .field-quantity button {
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .estimate-form .answer.answer-FormFieldNumber .input-group-number {
    width: 100%;
    max-width: 100%;
  }
}

.estimate-form .answer.answer-FormFieldRadio .answers-list {
  list-style: none;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item {
  text-align: center;
  max-width: max-content;
  min-width: 280px;
  border-radius: 4px;
  background: #F5F5F5;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.15);
  border: solid 2px #F5F5F5;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.selected {
  border-color: #00BF63;
  background: #333745;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.selected label .icon {
  display: none;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.selected label .icon.icon-hover {
  display: flex;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.selected label .label {
  color: #000;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.selected label input[type="radio"] {
  border-color: #00BF63;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.selected label input[type="radio"]::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background-color: #00BF63;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item label {
  gap: 20px;
  cursor: pointer;
  padding: 1.5rem;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item label .icon {
  display: flex;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item label .icon img {
  max-width: 100%;
  height: auto;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item label .icon .icon-svg {
  display: block;
  max-height: 135px;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item label .icon .icon-svg svg {
  display: block;
  max-width: 100%;
  max-height: 135px;
  width: 135px;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item label .icon.icon-hover {
  display: none;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item label .label {
  color: #000;
  font-size: 1.25rem;
  font-family: "Inter-400", "Inter-fallback", sans-serif;
  text-align: center;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #D9D9D9;
  background-color: #F5F5F5;
  display: inline-block;
  position: relative;
  margin-right: 8px;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item label input[type="radio"]:checked {
  border-color: #00BF63;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item label input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background-color: #00BF63;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item:hover {
  border-color: #00BF63;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item:hover label .icon {
  display: none;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item:hover label .icon.icon-hover {
  display: flex;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item:hover label .label {
  color: #000;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item [type="radio"] {
  width: 22px;
  height: 22px;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item:hover {
  border-color: #00BF63;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item:hover label .icon {
  display: none;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item:hover label .icon.icon-hover {
  display: flex;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item:hover label .label {
  color: #00BF63;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.selected, .estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item:hover {
  background: #E5F9EF;
  border: solid 2px #00BF63;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.selected label .icon, .estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item:hover label .icon {
  display: none;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.selected label .icon.icon-hover, .estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item:hover label .icon.icon-hover {
  display: flex;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.selected label .label, .estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item:hover label .label {
  color: #00BF63;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.multi-choice {
  position: relative;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.multi-choice [type="radio"] {
  display: none;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.multi-choice:after {
  content: "";
  color: #ffffff;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 25px;
  height: 25px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  border-radius: 5px;
  border: solid 1px #00BF63;
}

.estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.selected.multi-choice:after {
  --fs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  background-color: #00BF63;
  background-image: var(--fs-form-check-bg-image);
}

@media (max-width: 991.98px) {
  .estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item {
    max-width: 100%;
  }
  .estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.multi-choice {
    overflow: visible !important;
  }
  .estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item.multi-choice:after {
    top: 0;
    right: unset;
    right: 0;
    transform: translate(-15px, -12px);
  }
}

@media (hover: none) and (pointer: coarse) {
  .estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item:not(.selected):hover {
    background-color: #F5F5F5;
    border: solid 2px #F5F5F5;
  }
  .estimate-form .answer.answer-FormFieldRadio .answers-list .answer-item:not(.selected):hover label .label {
    color: #000;
  }
}

.estimate-form .answer.answer-FormFieldSelect {
  text-align: center;
}

.estimate-form .answer.answer-FormFieldSelect select {
  width: 100%;
  max-width: 25rem;
  text-align: left;
  margin-left: 2rem;
  margin-right: 2rem;
  display: flex;
  justify-self: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' encoding='utf-8'?%3E%3C!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Calque_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 453.5 453.5' width='17' height='17' style='enable-background:new 0 0 453.5 453.5;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0{fill:%2300BF63;} %3C/style%3E%3Cpath class='st0' d='M209.8,352.2L15.5,157.9c-9.4-9.4-9.4-24.6,0-33.9l22.7-22.7c9.4-9.4,24.5-9.4,33.9,0l154.7,154l154.7-154 c9.4-9.3,24.5-9.3,33.9,0l22.7,22.7c9.4,9.4,9.4,24.6,0,33.9L243.7,352.2C234.4,361.6,219.2,361.6,209.8,352.2L209.8,352.2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position-x: 94%;
  background-position-y: 50%;
}

@media (max-width: 991.98px) {
  .estimate-form .answer.answer-FormFieldSelect select {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

.estimate-form .answer.answer-FormFieldText {
  text-align: center;
}

.estimate-form .answer.answer-FormFieldText input {
  width: 75%;
  max-width: 100%;
}

@media (max-width: 575.98px) {
  .estimate-form .answer.answer-FormFieldText input {
    width: 100%;
  }
}

.estimate-form .answer.answer-FormFieldTitle .title {
  margin-bottom: 5.5rem;
}

.block-form .summary {
  list-style: none;
  padding-left: 0;
  margin: 0;
  z-index: 1;
}

.block-form .summary-title {
  font-family: "Inter-600", "Inter-fallback", sans-serif;
  color: #fff;
  font-size: 1.5rem;
}

.block-form .summary li {
  font-family: "Inter-400", "Inter-fallback", sans-serif;
  font-size: 1rem;
  color: #000;
  padding: 0.5rem;
  background-color: #fff;
  margin-bottom: 0.4rem;
  position: relative;
  display: flex;
  gap: 14px;
  border-radius: 4px;
}

.block-form .summary li svg {
  width: 27px;
  height: 27px;
  min-width: 27px;
}

.block-form .summary li__value {
  width: 27px;
  height: 27px;
}

.block-form .summary li.active {
  color: #00AB58;
  background: #E5F9EF;
}

.block-form .summary li.inactive {
  background-color: #F5F5F5;
  opacity: 20%;
}

.block-form .summary li .summary-number {
  height: 27px;
}

.block-form .form-title {
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  line-height: 1.2;
}

.block-form .estimate-form .title {
  display: block;
  font-family: "Inter-600", "Inter-fallback", sans-serif;
  color: #000;
  font-size: 1.313rem;
  text-align: center;
  line-height: normal;
  margin-bottom: 1.5rem !important;
}

.block-form .estimate-form .step.questions .disable_field {
  display: none !important;
}

.block-form .estimate-form .step.questions .question.required select,
.block-form .estimate-form .step.questions .question.required input,
.block-form .estimate-form .step.questions .question.required .answer-item {
  border: dashed 1px #D55324;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.75rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.block-form .estimate-form .step.questions .question.required .input-group-text {
  border-color: #ea868f;
}

.block-form .estimate-form .step.results .title {
  display: block;
  text-align: center;
  margin-bottom: 5rem;
}

.block-form .estimate-form .step.results span {
  display: block;
  text-align: center;
  margin-bottom: 5rem;
}

.block-form .estimate-form .navigation {
  display: flex;
  justify-content: center;
}

.block-form .estimate-form .navigation.disabled .next {
  cursor: not-allowed;
  opacity: 0.6;
}

.block-form .estimate-form .navigation a.button {
  margin: 0 1rem;
}

.block-form .estimate-form .navigation .btn {
  font-family: "Inter-600", "Inter-fallback", sans-serif;
  font-size: 1.25rem;
  color: #000;
  gap: 10px;
  display: flex;
  align-items: center;
  padding: 0.6rem 2rem;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  border: none;
  background: linear-gradient(95deg, #31D988 3.97%, #00BF63 86.67%);
}

.block-form .estimate-form .navigation .btn:hover {
  background: linear-gradient(180deg, #454B5F 0%, #606985 100%);
  color: #fff;
}

.block-form .estimate-form .navigation .btn:hover svg path {
  fill: #fff;
}

.block-form .estimate-form .navigation .btn svg path {
  fill: #000;
  transition: all 0.2s ease-in-out;
}

.block-form .estimate-form .personal_details {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.block-form .estimate-form .personal_details select {
  color: #333745;
}

.block-form .estimate-form .personal_details .gdpr-consent label {
  font-size: 0.875rem;
}

.block-form .estimate-form .personal_details input[type="text"] {
  width: 100%;
}

.block-form .estimate-form .personal_details input.required {
  border: dashed 1px #D55324;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.block-form .estimate-form .personal_details .form-check .form-check-input[type="checkbox"] {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  display: inline-block;
  position: relative;
  margin-right: 8px;
  color: #D55324;
}

.block-form .estimate-form .summary-left {
  background: linear-gradient(180deg, #454B5F 0%, #606985 100%);
  padding: 0 60px;
  min-height: calc(100vh - 115px);
  padding-top: 18vh;
}

.block-form .estimate-form .summary-left::before {
  content: "";
  background-image: url("../../../../themes/qualitaux/img/bg/circle-bottom.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom right;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  pointer-events: none;
}

.block-form .estimate-form .summary-left::after {
  content: "";
  background-image: url("../../../../themes/qualitaux/img/bg/circle-top.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top left;
  position: absolute;
  top: -16%;
  left: 0;
  width: 100%;
  height: 250px;
  pointer-events: none;
}

@media (min-width: 1200px) {
  .block-form .estimate-form .content-right {
    padding: 0 6%;
  }
}

@media (max-width: 1199.98px) {
  .block-form .estimate-form .content-right::before {
    content: none !important;
  }
  .block-form .estimate-form .content-right::after {
    content: none !important;
  }
}

.block-form .estimate-form .content-right::before {
  content: "";
  background-image: url("../../../../themes/qualitaux/img/bg/pattern-circle-bottom.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 250px;
  pointer-events: none;
}

.block-form .estimate-form .content-right::after {
  content: "";
  background-image: url("../../../../themes/qualitaux/img/bg/pattern-circle-left.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom left;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  pointer-events: none;
}

.block-form .estimate-form .content-right-heading {
  border: solid 1px #D9D9D9;
  border-radius: 4px;
}

.block-form .estimate-form .content-right-heading svg {
  max-width: max-content;
  margin: auto;
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
}

@media (max-width: 575.98px) {
  .block-form .estimate-form .content-right-heading {
    border-left: none;
    border-top: none;
    border-right: none;
    border-radius: 0;
  }
}

.block-form .estimate-form .content-right .title-form {
  font-family: "Inter-700", "Inter-fallback", sans-serif;
  font-size: 1.75rem;
  color: #000;
  line-height: 1.2;
}

.block-form .estimate-form .content-right .subtitle-form {
  font-family: "Inter-300", "Inter-fallback", sans-serif;
  font-size: 1.188rem;
  color: #000;
}

@media (min-width: 1200px) {
  .block-form .estimate-form.container .content-right {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.block-form .estimate-form.container .content-right::before, .block-form .estimate-form.container .content-right::after {
  content: none !important;
}

@media (max-width: 1199.98px) {
  .block-form .estimate-form:not(.container) {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

@media (max-width: 1199.98px) and (min-width: 576px) {
  .block-form .estimate-form:not(.container) {
    max-width: 540px;
  }
}

@media (max-width: 1199.98px) and (min-width: 768px) {
  .block-form .estimate-form:not(.container) {
    max-width: 760px;
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .block-form .estimate-form:not(.container) {
    max-width: 960px;
  }
}

@media (max-width: 1199.98px) {
  .block-form .form-title {
    font-size: clamp(1.4rem, 3vw, 1.875rem);
  }
}

@media (max-width: 991.98px) {
  .block-form .form-container {
    min-height: unset;
  }
  .block-form .logo {
    height: 78px;
  }
  .block-form .estimate-form .navigation .btn {
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 767.98px) {
  .block-form .estimate-form .navigation .btn {
    max-width: max-content;
  }
}

@media (max-width: 991.98px) {
  .block-form .estimate-form .content-right-heading {
    background: linear-gradient(180deg, #333745 0%, #4C5164 100%);
    color: #fff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 1.5rem 7% 2.2rem 7% !important;
    border: none !important;
    border-radius: 0 !important;
  }
  .block-form .estimate-form .content-right-heading .title-form {
    color: #fff !important;
    border-bottom: solid 1px #fff;
    padding-bottom: 15px;
  }
  .block-form .estimate-form .content-right-heading svg {
    bottom: 43px;
  }
  .block-form .estimate-form .content-right-heading svg path {
    fill: #fff;
  }
  .block-form .estimate-form .content-right-heading::after {
    content: "";
    background-image: url("../../../../themes/qualitaux/img/bg/ellipse-top.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top left;
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
  }
  .block-form .estimate-form .content-right-heading::before {
    content: "";
    background-image: url("../../../../themes/qualitaux/img/bg/ellipse-bottom.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
  }
  .block-form .estimate-form .step.results .saving {
    background: #fff;
    padding: 3rem 1.5rem;
    margin-top: 0;
    border-radius: 0;
    text-align: center;
  }
  .block-form .estimate-form .step.results .title {
    margin-top: 0 !important;
    color: #000 !important;
  }
  .block-form .estimate-form:has(.step.results:not(.d-none)) .content-right-heading {
    padding: 1.5rem 7% 40px 7% !important;
  }
  .block-form .estimate-form:has(.step.results:not(.d-none)) .content-right-heading svg {
    bottom: 47px;
  }
  .estimate-form.overflow-hidden {
    overflow: visible !important;
  }
  html,
  body {
    overflow-x: hidden;
  }
}

/*# sourceMappingURL=pwform.css.map */