.energy-saving-calculator-block {
  background-image: var(--energy-saving-calculator-bg-image, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.energy-saving-calculator-block::after {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,rgba(20,36,87,0.40) 0%,rgba(20,36,87,0.40) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.energy-saving-calculator-block__label {
  font-family: var(--font-semibold);
  font-size: 14px;
  line-height: 20px;
}

.energy-saving-calculator-block__title,
.energy-saving-calculator-block__description {
  text-align: center;
}

.energy-saving-calculator-block__form {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  width: 100%;
}

.energy-saving-calculator-block__section-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--neutral-dark-gray);
  margin-bottom: 8px;
}

.energy-saving-calculator-block__group {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
}

.energy-saving-calculator-block__content {
  background: var(--white);
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.energy-saving-calculator-block__input-unit {
  position: relative;
}

.energy-saving-calculator-block__unit {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-dark-gray);
  background: var(--white);
}

.energy-saving-calculator-block__range-value {
  font-size: 14px;
}

.energy-saving-calculator-block__grid {
  gap: 1rem;
}

.energy-saving-calculator-block__lead-step[hidden] {
  display: none;
}

.energy-saving-calculator-block__lead-step {
  width: 100%;
}

.energy-saving-calculator-block__lead-step-title {
  margin-bottom: 1rem;
  text-align: center;
}

.energy-saving-calculator-block__lead-step-content {
  width: 100%;
}

@media (min-width: 992px ) {
  .energy-saving-calculator-block__content {
    padding: 48px;
  }
  .energy-saving-calculator-block__grid {
    gap: 0px;
  }
  .energy-saving-calculator-block__lead-step {
    max-width: 820px;
  }
}

.energy-saving-calculator-block__feedback {
  font-size: 14px;
  color: var(--error-dark);
  margin-top: 1rem;
}

/* Gráfico circular */
.energy-saving-calculator-block__circle-chart {
  display: flex;
  justify-content: center;
}

.energy-saving-calculator-block__circle-chart svg {
  width: 150px;
  height: 150px;
}

.circle-chart__background {
  stroke: #cbd5e1;
  stroke-width: 2;
}

.circle-chart__circle {
  stroke: #4256f9;
  stroke-linecap: round;
  stroke-width: 3;
  transform: rotate(-90deg);
  transform-origin: center;
}

/* Gráfico de barras */
.bar-chart {
  display: block;
  width: 80px;
  height: 200px;
  background: #cbd5e1;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.bar-chart__value {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #4256f9;
}
