/* Calculator module styles extracted from inline */
.calculator {
  background-color: #fff;
  padding: 48px;
  border-radius: 4px;
  display: flex;
  gap: 24px;
  width: 100%;
}
.calculator__sliders {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 44px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.32px;
}
.slider__value {
  margin-top: 8px;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.28px;
}
.slider__range {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

.result-box {
  width: 100%;
  border-radius: 4px;
  background: var(--color-primary);
  padding: 32px;
  color: var(--color-text-dark);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.28px;
}
.result__top {
  text-align: center;
  margin-bottom: 10px;
}
.result__total {
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
  margin-bottom: 40px;
}
.result__bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.result__bot p {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.8px;
}

@media (width<1000px) {
  .calculator {
    flex-direction: column;
  }
}
@media (width<700px) {
  .calculator {
    padding: 12px;
  }
  .result-box {
    padding: 16px;
    font-size: 24px;
  }
  .slider__value {
    font-size: 24px;
  }
  .result__bot p {
    font-size: 16px;
  }
  .result__total {
    font-size: 32px;
  }
}

