.input-container input {
  width: 100%;
}
.income {
  display: none;
}
.active {
  display: block;
}
/* Sliding Fee Scale */
.input-wrapper {
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 12px #e1efd0;
  border-radius: 16px;
  padding: 34px;
}
.input-wrapper h4 {
  color: #57585b;
  font-size: 22px;
}
.input-wrapper span {
  border: 1px #e1efd0 solid;
  border-radius: 10px;
  padding: 5px 11px;
  color: black;
}
.income {
  border: #e1efd0 solid 1px;
  border-radius: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(https://lifecare.kinsta.cloud/wp-content/uploads/2024/05/Polygon-1.png)
    95% no-repeat;
  color: #000000 !important;
}
.input-result-container h4 {
  margin: 0;
}
.input-result {
  background-color: #eff5e9;
  outline: #e1efd0 1px solid;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 2em;
  font-weight: 600;
}
@media (max-width: 767px) {
  .input-result {
    font-size: 22px;
  }
}
/* Range slider */
.custom-slider {
  -webkit-appearance: none;
  height: 8px;
  background: #e1efd0;
  border-radius: 20px;
}
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  background: #80c728;
  cursor: pointer;
}
