@keyframes fwm-wobble {
  16.65% {
    transform: translateX(8px)
  }
  33.3% {
    transform: translateX(-6px)
  }
  49.95% {
    transform: translateX(4px)
  }
  66.6% {
    transform: translateX(-2px)
  }
  83.25% {
    transform: translateX(1px)
  }
  to {
    transform: translateX(0)
  }
}
.quest-container {
  background-color: white;
  border: 1px solid #eaeaea;
}
@media screen and (min-width:1600px) {
  .quest-container {
    width: 80%
  }
}
.progress_panel {
  height: 8rem;
  width: 85%;
  margin: 2rem auto 0;
}
#progress {
  background-color: #E1E1E1;
  box-shadow: none;
  height: 3px;
  overflow: visible;
  position: relative;
  top: 2.8rem;
  z-index: 3;
}
.progress-bar {
  background-color: #6292CD;
  height: 3px;
  position: relative;
}
.fwm-questionnaire {
  width: 95%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  text-align: center
}
.formQuest {
  margin: 0 auto;
  text-align: center;
  display: none;
  scroll-margin-top: 10rem
}
.formQuest.active {
  display: block;
}
.questContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.6rem;
  align-items: stretch;
  padding-top: 2.8rem
}
.questExplanation {
  font-size: .9rem;
  font-weight: 300
}
/* slider */
.range_container {
  width: 90%;
  margin: auto;
  position: relative;
  padding-top: 4rem;
  user-select: none;
}
.range_container input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  height: 10px;
  margin: 0;
  cursor: pointer;
}
.range_container input[type="range"]:focus {
  outline: none;
}
/* Focus visible for keyboard users */
.range_container input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(98, 146, 205, 0.6);
  background: #6292cd;
}
.range_container input[type="range"]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(98, 146, 205, 0.6);
  background: #6292cd;
}
.range_container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: #6292cd;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -12px;
  position: relative;
  z-index: 2;
  border: none;
  transition: background 0.3s ease;
}
.range_container input[type="range"]::-webkit-slider-thumb:hover {
  background: #6292cd;
}
.range_container input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: #6292cd;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 2;
  transition: background 0.3s ease;
}
.range_container input[type="range"]::-moz-range-thumb:hover {
  background: #6292cd;
}
.range_container input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  background: transparent;
  border-radius: 4px;
}
.range_container input[type="range"]::-moz-range-track {
  width: 100%;
  height: 8px;
  background: transparent;
  border-radius: 4px;
}
.slider-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  background: #6292cd;
  color: white;
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: .9rem;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 99;
  transition: left 0.15s ease;
}
.slider-tooltip::before {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  translate: -50% 0;
  width: 0.5rem;
  height: 0.5rem;
  rotate: 45deg;
  z-index: -1;
  background-color: inherit;
}
.labels-container {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  user-select: none;
}
.display-container {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  background-color: #fafafa;
  padding: .5rem;
  border-bottom: 2px solid #6292cd;
  font-size: 110%;
}
#valueRangeLabel {
  font-weight: 700;
}
/* Visually hidden label for screen readers */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.quesText, .tooltip {
  display: inline-block
}
.quesText {
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(1.65rem, 1.65rem + 1vw, 2.8rem);
}
.tooltip {
  padding-top: 4px;
  width: 30px;
  height: 26px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .1);
  text-align: center;
  color: #fff;
  font-size: 20px;
  vertical-align: top;
  position: relative;
  cursor: pointer;
  box-sizing: content-box;
}
.tooltip:hover {
  background-color: rgba(0, 0, 0, .3)
}
.tooltip:hover, .tooltip:focus-visible {
  color: #fff;
}
.tooltip:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 1px;
}
.tooltip::before, .tooltip::after {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
/* tooltip triangle */
.tooltip::before {
  content: "";
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  translate: -50% 0;
  width: 0.8rem;
  height: 0.8rem;
  rotate: 45deg;
  z-index: 9999;
  background-color: #6292cd;
}
/* tooltip content */
.tooltip::after {
  content: attr(data-content);
  position: absolute;
  top: 175%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  font-family: 'Catamaran', sans-serif;
  font-weight: 200;
  font-style: normal;
  background: #6292cd;
  padding: 1.2rem;
  text-align: center;
  white-space: pre-wrap;
  width: 10rem;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}
.tooltip:hover::before, .tooltip:hover::after, .tooltip:focus-visible::before, .tooltip:focus-visible::after {
  opacity: 1;
  visibility: visible;
}
.select-button {
  display: flex;
  flex-direction: column;
  column-gap: .4rem;
  align-items: center;
  justify-content: center;
  width: 22rem;
  box-sizing: border-box;
  transition: all .3s ease;
  background-color: #fafafa;
  border: 2px solid #fafafa;
}
.select-button:hover {
  transform: scale(1.1);
  z-index: 99999999;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.select-button:active, .select-button.selected {
  background-color: #fff;
  border: 2px solid #6292cd;
}
.box {
  line-height: 1.1;
  padding: 2rem;
  min-width: 100%;
  box-sizing: border-box;
}
.box-title {
  display: block;
  text-transform: uppercase;
  font-size: 1rem;
  padding-bottom: .4rem
}
textarea {
  border: 1px solid #e1e1e1;
  padding: 5px 8px 0;
  margin-bottom: 1rem;
  transition: all .3s ease-in;
  font-family: 'catamaran', sans-serif;
  width:90%;
  height: 60px;
}
button {
  cursor: pointer
}
.select-button .display-textarea {
  display: none;
}
.select-button.selected .box.other-box {
  padding-bottom: .4rem
}
.select-button.selected .display-textarea, .display-textarea.more-info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%	
}
.display-textarea.more-info-box {
  width: 60%;
}
.fwm-btn-l {
  display: block;
  margin: 3.5rem auto;
  padding: .6rem 2rem .6rem 2.8rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  background-color: #6292cd;
  color: #fff;
  border: 1px solid #fff;
  font-family: "catamaran", sans-serif;
  border-radius: 3rem;
  cursor: pointer
}
.fwm-btn-l:hover {
  background: #fff;
  color: #6292cd;
  border: 1px solid #6292cd;
}
.fwm-disclaimer {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 70%;
  font-weight: 200
}
.fwm-disclaimer p {
  padding: .5rem 5%;
  font-size: .8rem;
}
.wobble {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent
}
.wobble:active, .wobble:focus, .wobble:hover {
  -webkit-animation-name: fwm-wobble;
  animation-name: fwm-wobble;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1
}
.reset-cont {
  background-color: #EAEAEA;
  padding: .5rem 1rem;
  margin: 1rem 0 0
}
.reset-icon {
  font-size: 150%;
  margin-right: 5px
}
#resetBtn {
  display: block;
  border: none;
  background: none;
  margin: .8rem auto;
  cursor: pointer;
}
#resetBtn:hover {
  color: #6292cd
}
/* user contact details form */
.detailsCollection {
  display: grid;
  grid-template-columns: 4fr 3fr;
  gap: 5%;
  margin: 1.6rem 0;
}
.lead-inline {
  display: flex;
}
.formLabelSelect {
  position: relative;
}
.formLabelSelect select {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.formLabelSelect label {
  display: block !important;
  background: #eaeaea;
  line-height: 100%;
  display: flex;
  justify-items: center;
  padding: 15px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  padding: 0 3rem 1rem;
}
@media screen and (min-width:1040px) {
  .lead-form {
    width: 90%;
  }
}
.lead-form label {
  display: none
}
.lead-form > div {
  width: 100%;
  align-self: flex-start;
}
.lead-name {
  display: flex;
  gap: 2rem;
  justify-content: space-between
}
@media screen and (min-width:821px) {
  .lead-name > div {
    width: 50%;
  }
}
.lead-tc {
  display: inline-flex;
  flex-wrap: wrap;
}
.small {
  text-align: left;
  font-size: 86%;
  color: #6D7882;
  margin-block-end: 0;
}
.calc-btn {
  width: 100%;
  background-color: #6292cd!important;
  color: #fff;
  font-family: "Catamaran", sans-serif;
  font-weight: 500;
  font-size: 110%;
  border: 0!important;
  padding: 20px;
  margin-top: 2rem;
  cursor: pointer
}
.left-img img {
  max-width: 100%;
}
.lead-form input, .lead-form select {
  width: 100%;
  border: 0;
  background: #eaeaea;
  padding: 10px 12px;
  font-size: 15px;
  vertical-align: middle;
  border-radius: 0;
  font-family: "Catamaran", sans-serif;
  box-sizing: border-box;
  border-bottom: 1px solid transparent;
}
.lead-form input:focus {
  border-bottom: 1px solid #ccc;
}
.lead-tc label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  padding-top: 5px;
  text-align: left
}
input#acknowledgement {
  accent-color: #6292cd;
  height: 20px;
  width: 20px;
  margin-right: .6em;
}
.trustpilot img {
  width: 40%;
  margin-top: 10px;
}
#tel-warning {
	display: none;
    color: red;
}
/* end customer contact details form */
@media screen and (max-width:820px) {
  .lead-name {
    flex-direction: column
  }
}
@media screen and (max-width:720px) {
  .detailsCollection {
    grid-template-columns: 1fr;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width:600px) {
  .questContainer {
    flex-direction: column;
    align-items: center;
    border: none
  }
  .select-button {
    width: 80%
  }
  .wp-block-group.bkgd-lines {
    background-image: none
  }
}

.formQuest .standardInput, .formQuest .currency-input, .formQuest .select-country {
  border: 1px solid #e1e1e1;
  padding: 5px 8px;
  margin: 6px 0 20px;
  transition: all .3s ease-in;
  font-family: 'catamaran', sans-serif;
}