/*!******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/components/ratenrechner/module.scss ***!
  \******************************************************************************************************************************************************************************************/
@charset "UTF-8";
.ratenrechner_module {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
}
.ratenrechner_module:empty {
  min-height: 200px;
  border: 2px dashed #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ratenrechner_module:empty::after {
  content: "Ratenrechner Modul (Inhalt hinzufügen)";
  color: #999;
}
.ratenrechner_module__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.ratenrechner_module__button-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
.ratenrechner_module__result-text {
  white-space: pre;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border-radius: 4px;
  background-color: #ddd;
  width: 100%;
}
.ratenrechner_module__result-text .ratenrechner_module__label-wrapper {
  display: flex;
  align-items: center;
}
.ratenrechner_module__result-text .ratenrechner_module__label-wrapper * {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2;
}
.ratenrechner_module__result-text .ratenrechner_module__value {
  line-height: 1;
  display: flex;
  align-items: center;
}
.ratenrechner_module_button {
  display: block;
  padding: 10px 20px;
  background-color: #2ea3f2;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  width: 100%;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.ratenrechner_module_button:hover {
  transform: scale(1.05);
}
.ratenrechner_module__simple_divider {
  width: 100%;
  height: 1px;
  background-color: #94b7d3;
  margin: 10px 0px;
  border: none;
}
.ratenrechner_module__slider-label {
  flex: 1;
}
.ratenrechner_module__slider-value {
  white-space: nowrap;
}
.ratenrechner_module__slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.ratenrechner_module__value {
  letter-spacing: 1px;
}
.ratenrechner_module__range-input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--slider-color);
  border-radius: 5px;
  outline: none;
  margin: 15px 0;
  transition: all 0.3s ease;
}
.duration-slider-container .ratenrechner_module__range-input {
  background: var(--slider-color, #ddd);
}
.duration-slider-container .ratenrechner_module__range-input::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: var(--slider-color, #ddd);
  border-radius: 4px;
}
.duration-slider-container .ratenrechner_module__range-input::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: var(--slider-color, #ddd);
  border-radius: 4px;
}
.duration-slider-container .ratenrechner_module__range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--slider-thumb-color, #2ea3f2);
  cursor: pointer;
  margin-top: -6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.duration-slider-container .ratenrechner_module__range-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.duration-slider-container .ratenrechner_module__range-input::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--slider-thumb-color, #2ea3f2);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
/*!*******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/components/static-module/module.scss ***!
  \*******************************************************************************************************************************************************************************************/
.example_static_module {
  padding: 30px;
  background-color: #ecf4f7;
}
.example_static_module__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.example_static_module__image {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 20px;
  position: relative;
}
.example_static_module__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 12px;
  background-color: #ff5a36;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}
.example_static_module__content-container {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 20px;
}
.example_static_module__summary {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 4px;
  border-left: 3px solid #007cba;
}
