/******* Do not edit this file *******
Code Snippets Manager
Saved: Jul 17 2026 | 16:58:24 */
.estimate-slider-box {
  --slider-bg: linear-gradient(135deg, #6d28d9 0%, #A61AA7 100%);
  --slider-track: #e5e7eb;
  --slider-thumb: #ffffff;
  --text-main: #111827;
  --text-soft: #6b7280;
  --shadow-main: 0 10px 30px rgba(37, 99, 235, 0.18);
  --shadow-thumb: 0 4px 14px rgba(109, 40, 217, 0.35);
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 20px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-main);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.estimate-slider-item {
  margin-top: 28px;
}
.estimate-slider-item:first-child {
  margin-top: 0;
}
.estimate-slider-box label {
  display: block;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--text-main);
}
.estimate-slider-box input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  outline: none;
  background: var(--slider-bg);
  cursor: pointer;
  margin: 0;
}
.estimate-slider-box input[type="range"]::-moz-range-track {
  height: 12px;
  border-radius: 999px;
  background: var(--slider-bg);
  border: none;
}
.estimate-slider-box input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--slider-thumb);
  border: 3px solid #4f46e5;
  box-shadow: var(--shadow-thumb);
  /* transition: transform 0.2s ease, box-shadow 0.2s ease; */
}
.estimate-slider-box input[type="range"]::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--slider-thumb);
  border: 3px solid #4f46e5;
  box-shadow: var(--shadow-thumb);
  /* transition: transform 0.2s ease, box-shadow 0.2s ease; */
}
/*
.estimate-slider-box input[type="range"]:hover::-webkit-slider-thumb,
.estimate-slider-box input[type="range"]:focus::-webkit-slider-thumb {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.42);
}

.estimate-slider-box input[type="range"]:hover::-moz-range-thumb,
.estimate-slider-box input[type="range"]:focus::-moz-range-thumb {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.42);
}
*/
.estimate-slider-current-value {
  margin-top: 14px;
  font-size: 0.98rem;
  color: var(--text-soft);
}
#estimate-slider-luce-value, #estimate-slider-gas-value {
  display: inline-block;
  min-width: 72px;
  padding: 6px 12px;
  margin-right: 6px;
  border-radius: 999px;
  background: var(--slider-bg);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.22);
}
.estimate-preset-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.estimate-preset-options button {
  border: 1px solid rgba(109, 40, 217, 0.22);
  background: #fff;
  color: var(--text-main);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
}
.estimate-preset-options button:hover, .estimate-preset-options button.is-active {
  background: var(--slider-bg);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(109, 40, 217, 0.22);
}
.estimate-preset-description {
  margin-top: 10px;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--text-soft);
}
span.estimate-luce-month, span.estimate-gas-month, span.euro-month-label, .estimate-month {
  display: inline-block;
  font-size: 1.6em;
  font-weight: bold;
  color: var(--bde-headings-color);
}
span.euro-month-label {
  font-size: 1.2em;
}
.estimate-luce, .estimate-gas {
  display: inline-block;
}
.style-dual span.estimate-luce-month, .style-dual span.estimate-gas-month, .style-dual span.euro-month-label {
  font-size: 0.9em;
  font-weight: 500;
}
.estimete-label {
  font-size: 0.9em;
}
@media (max-width: 767px) {
  .estimate-slider-box input[type="range"]::-moz-range-thumb {
    width: 32px;
    height: 32px;
  }
  .estimate-slider-box input[type="range"]::-webkit-slider-thumb {
    width: 32px;
    height: 32px;
  }
  .estimate-slider-box {
    padding: 16px 16px 14px;
    border-radius: 18px;
    max-width: 224px;
  }
  .estimate-slider-item {
    margin-top: 4px;
  }
  .estimate-slider-box label {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  .estimate-slider-box input[type="range"] {
    height: 10px;
  }
  #estimate-slider-luce-value, #estimate-slider-gas-value {
    min-width: 68px;
    padding: 5px 10px;
    font-size: 0.95rem;
  }
  .estimate-slider-current-value {
    font-size: 0.92rem;
  }
  .estimate-preset-options {
    gap: 6px;
  }
  .estimate-preset-options button {
    padding: 7px 8px;
    font-size: 0.82rem;
  }
  .estimate-preset-description {
    font-size: 0.82rem;
  }
}
/* SLIDER STICKY */
@media (max-width: 600px) {
  .sticky-slider.is-sticky {
    top: unset !important;
    bottom: -75px;
    left: calc(50% - 112px) !important;
  }
  .sticky-slider.is-sticky input#estimate-slider-luce, .sticky-slider.is-sticky input#estimate-slider-gas, .sticky-slider.is-sticky .estimate-preset-description, .sticky-slider.is-sticky .estimate-slider-current-value {
    display: none;
  }
}
