.savings-simulator {
  --primary-color: #726BDD;
  --mask-color: #EBEAF1;
  --wp--preset--color--accent-3: #6558FA;
  --wp--preset--color--contrast: #2c286c;
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 14%;
  align-items: center;
}
@media (max-width: 781px) {
  .savings-simulator {
    flex-direction: column;
    gap: 4rem;
  }
}
.savings-simulator .column {
  width: 100%;
}
.savings-simulator .tab-label {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
}
.savings-simulator .tab-label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
}
.savings-simulator .foot-note {
  font-size: 0.875rem;
  opacity: 0.6;
  margin-top: 4rem;
}
.savings-simulator .slider-container {
  color: var(--primary-color);
}
.savings-simulator .slider-container label {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.savings-simulator .slider-container label ~ label {
  margin-top: 50px;
}
.savings-simulator .range-wrap {
  position: relative;
  margin: 0;
}
.savings-simulator .range-wrap .custom-thumb {
  position: absolute;
  top: -3px;
  min-width: 48px;
  transform: translateX(-50%);
  background: #fff;
  color: currentColor;
  padding: 5px 14px;
  border-radius: 30px;
  box-shadow: 0px 0px 40px 0px rgba(51, 47, 120, 0.15);
  font-size: 1.125rem;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
}
.savings-simulator .range-wrap input[type=range] {
  -webkit-appearance: none;
  color: inherit;
  width: 100%;
  height: 8px;
  border-radius: 20px;
  background: transparent;
  outline: none;
}
.savings-simulator .range-wrap input[type=range]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, currentColor 0%, currentColor var(--value-percent), #CFCEE7 var(--value-percent), #CFCEE7 100%);
}
.savings-simulator .range-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 48px;
  height: 20px;
  background: #fff;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  position: relative;
  z-index: 3;
  opacity: 0;
}
.savings-simulator .range-wrap input[type=range]::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: #CFCEE7;
}
.savings-simulator .range-wrap input[type=range]::-moz-range-progress {
  height: 6px;
  border-radius: 3px;
  background: currentColor;
}
.savings-simulator .range-wrap input[type=range]::-moz-range-thumb {
  width: 48px;
  height: 20px;
  background: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 1rem;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
@-moz-document url-prefix() {
  .savings-simulator .custom-thumb {
    top: 150% !important;
  }
}
.savings-simulator .calcul-result {
  width: 120%;
  max-width: 566px;
  background: #fff;
  padding: 0;
  border-radius: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media (max-width: 781px) {
  .savings-simulator .calcul-result {
    width: 100%;
  }
}
.savings-simulator .calcul-result .block {
  height: 50%;
  padding-inline: 2rem;
  padding-block: 3rem 2.5rem;
}
.savings-simulator .calcul-result .block + .block {
  border-top: 4px dashed var(--mask-color);
}
.savings-simulator .calcul-result .block::before, .savings-simulator .calcul-result .block::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 112px;
  height: 112px;
  background-color: var(--mask-color);
  border-radius: 50%;
}
.savings-simulator .calcul-result .block::before {
  left: -70px;
}
.savings-simulator .calcul-result .block::after {
  right: -70px;
}
.savings-simulator .calcul-result .block.costs {
  color: var(--wp--preset--color--contrast);
}
.savings-simulator .calcul-result .block.savings {
  color: var(--wp--preset--color--accent-3);
}
.savings-simulator .calcul-result .title {
  font-size: 1.5rem;
  font-weight: 500;
  color: inherit;
  margin: 0;
}
.savings-simulator .calcul-result p {
  font-size: clamp(2rem, 1rem + 2vw, 4rem);
  font-weight: 600;
  margin: 10px 0;
}
.savings-simulator .calcul-result p small {
  font-size: 1.5rem;
  font-weight: 500;
}
.savings-simulator .calcul-result .monthly {
  opacity: 0.4;
}
.savings-simulator .value-glow {
  animation: pulse-glow 0.5s ease;
}

@keyframes pulse-glow {
  0% {
    color: currentColor;
    text-shadow: 0 0 0px currentColor;
  }
  50% {
    color: currentColor;
    text-shadow: 0 0 8px currentColor;
  }
  100% {
    color: currentColor;
    text-shadow: 0 0 0px currentColor;
  }
}/*# sourceMappingURL=style.css.map */