.results {
  flex: 1;
  max-width: 1000px;
  margin: 30px auto;
}
.results-headline {
  font-size: 25px;
  margin: 10px 0;
  font-weight: bold;
}
.results-table-row {
  display: flex;
}
@media (min-width: 768px) {
  .results-table-row {
    margin-left: 10%;
  }
}
.results-table-row:last-child {
  margin-top: 5px;
  border-top: 1px solid #006467;
}
.results-table-text {
  flex: 10;
}
.results-table-percent {
  flex: 1;
  padding-right: 10px;
}
.results-table-result {
  flex: 3;
  text-align: right;
}
.results .total {
  color: red;
  font-weight: bold;
}

.calculator-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: #f4f4f4;
}
.calculator-form label {
  font-weight: bold;
  margin-bottom: 0;
  text-align: center;
}
.calculator-form label span {
  color: red;
}
.calculator-form-slider {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calculator-form-slider input {
  padding-left: 0;
  padding-right: 0;
}
.calculator-form-slider-underlabel {
  display: flex;
  justify-content: space-between;
  margin-top: -5px;
}
.calculator-form-input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.calculator-form-input input {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 100px;
  max-width: 200px;
  text-align: center;
}

.calculator-container {
  max-width: 1530px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  gap: 30px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .calculator-container {
    flex-direction: row;
  }
}

/*# sourceMappingURL=calculator.css.map */
