.mod_step_price_calculator {
  overflow: visible!important;
}
.step-current-titel {
  display: none;
}
@media only screen and (max-width: 767px) {
  .step-current-titel {
    display: block;
    text-align: center;
    color: var(--inn-primary);
  }
}
.step-price-calculator {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  min-height: 600px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.step-price-calculator .v-step-error-message {
  color: red;
  font-weight: 700;
  margin-bottom: 20px;
}
.step-price-calculator .input-container {
  position: relative;
  margin-bottom: 20px;
}
.step-price-calculator .input-container input {
  margin-bottom: 0;
  background: white;
}
.step-price-calculator .input-container .input-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  height: 100%;
  transform: translateY(-50%);
  cursor: pointer;
  color: white;
  background: #CBCBCB;
  border-radius: 0 5px 5px 0;
  padding-left: 12px;
  padding-right: 12px;
}
.step-price-calculator .option.radio > input {
  position: absolute;
  opacity: 0!important;
  display: none;
}
.step-price-calculator .option.radio > input + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  min-height: 22px;
  display: flex;
  margin-bottom: 0;
  align-items: center;
  font-family: var(--inn-head-font);
  font-size: 25px;
  font-weight: 700;
}
.step-price-calculator .option.radio > input + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 22px;
  height: 22px;
  background: transparent;
  border: 2px solid var(--inn-neutral);
  border-radius: 50%;
  margin-top: 0;
}
.step-price-calculator .option.radio > input:hover + label:before {
  background: transparent;
}
.step-price-calculator .option.radio > input:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.step-price-calculator .option.radio > input:checked + label:before {
  background: transparent;
}
.step-price-calculator .option.radio > input:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.step-price-calculator .option.radio > input:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.step-price-calculator .option.radio > input:checked + label:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 18px;
  height: 18px;
  background: var(--inn-neutral);
  border-radius: 50%;
  border: none!important;
  box-shadow: none!important;
  top: 50%;
  transform: translateY(-50%);
}
.step-price-calculator .option.radio > label {
  margin-right: 10px;
  margin-bottom: 30px;
}
.step-price-calculator > div {
  position: relative;
  z-index: 2;
}
.step-price-calculator:before {
  content: "";
  display: block;
  width: 100vw;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  background: var(--inn-lightgrey);
  transform: translate(-50%, -50%);
}
.step-price-calculator__container {
  display: flex;
  gap: 40px;
}
.step-price-calculator__left {
  width: calc(100% - 540px);
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .step-price-calculator__left {
    width: 100%;
  }
}
.step-price-calculator__right {
  min-width: 500px;
  max-width: 500px;
  width: 100%;
}
.step-price-calculator__steps {
  margin-bottom: 2rem;
  padding: 1rem 0;
}
.step-price-calculator .v-step-headline h2,
.step-price-calculator .v-step-headline h3,
.step-price-calculator .v-step-headline h4 {
  color: var(--inn-primary);
}
.steps-list {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .steps-list {
    flex-wrap: wrap;
  }
}
.steps-list__item {
  z-index: 2;
  padding: 0 1rem;
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.steps-list__item:before {
  content: "";
  display: block;
  width: 100%;
  top: 50%;
  height: 5px;
  background: var(--inn-neutral);
  position: absolute;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.steps-list__item:after {
  content: "";
  display: block;
  width: 20px;
  top: 50%;
  left: 50%;
  height: 20px;
  background: var(--inn-neutral);
  position: absolute;
  z-index: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.steps-list__item .step-link {
  display: flex;
  flex-direction: column;
  grid-gap: 40px;
  align-items: center;
  font-family: var(--inn-head-font);
  font-size: 25px;
}
.steps-list__item .step-link .step-number,
.steps-list__item .step-link .step-title {
  color: var(--inn-neutral);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .steps-list__item .step-link .step-number {
    padding-bottom: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .steps-list__item .step-link .step-title {
    display: none;
  }
}
.steps-list__item.done .step-title {
  color: #B7B7B7;
}
.steps-list__item.done .step-number {
  color: #B7B7B7;
}
.steps-list__item.done:before {
  background: #B7B7B7;
}
.steps-list__item.done:after {
  background: #B7B7B7;
}
.steps-list__item.current .step-title {
  color: var(--inn-primary);
}
.steps-list__item.current .step-number {
  color: var(--inn-primary);
}
.steps-list__item.current:before {
  background: var(--inn-primary);
  opacity: 1;
}
.steps-list__item.current:after {
  background: var(--inn-primary);
  opacity: 1;
}
.step-status {
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--inn-third);
  font-weight: 700;
  z-index: 3;
}
.step-title {
  font-weight: 500;
}
.option {
  margin-bottom: 1.5rem;
}
.option input[type="radio"],
.option input[type="checkbox"] {
  margin-right: 0.5rem;
}
.option-inputs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  display: none;
}
.option-inputs.active {
  display: block;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--inn-neutral);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.mandatory {
  color: red;
  margin-left: 3px;
}
.step-price-calculator__right {
  flex: 1;
  max-width: 35%;
}
.step-info,
.price-calculation {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.step-info {
  margin-bottom: 2rem;
}
.price-list-outer-container {
  margin-top: 1.5rem;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.price-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.price-item.base-price {
  font-weight: 700;
}
.total-price {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  margin-top: 1rem;
  border-top: 2px solid var(--inn-neutral);
  font-weight: 700;
  font-size: 1.2em;
}
.step-navigation {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
}
.prev-step,
.next-step,
.submit {
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
.prev-step {
  background: #f0f0f0;
  color: var(--inn-neutral);
  text-decoration: none;
}
.next-step,
.submit {
  background: var(--inn-primary);
  color: white;
}
.next-step:hover,
.submit:hover {
  opacity: 0.8;
}
.success-image {
  margin-bottom: 1.5rem;
}
.success-image img {
  max-width: 200px;
  height: auto;
}
.success-content h3 {
  color: var(--inn-primary);
}
.identifier {
  margin-top: 20px;
  margin-bottom: 20px;
}
.distance-info {
  font-size: 0.9em;
  color: #666;
  margin-left: 0.5rem;
}
.success-lower-container {
  display: flex;
  justify-content: space-between;
  grid-gap: 20px;
  margin-top: 20px;
}
.success-lower-container .success-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.success-lower-container .success-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
}
.success-lower-container .success-additional-text {
  color: var(--inn-primary);
  text-transform: uppercase;
  font-family: var(--inn-head-font);
  font-weight: 700;
  font-size: var(--inn-h2-font-size);
  line-height: 1;
  text-align: right;
}
@media (max-width: 992px) {
  .step-price-calculator__container {
    flex-direction: column;
  }
  .step-price-calculator__left,
  .step-price-calculator__right {
    max-width: 100%;
  }
}
.decision-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .decision-options {
    grid-template-columns: 1fr;
  }
}
.decision-options a {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.decision-options a h4 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: var(--inn-h2-font-size);
  line-height: 1;
  text-align: center;
  color: white;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .decision-options a h4 {
    font-size: 5vw;
  }
}
.decision-options a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--inn-neutral);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.decision-options a:hover h4 {
  color: var(--inn-primary);
}
.decision-options a:hover:before {
  opacity: 0.8;
}
.option-details {
  margin: 2rem 0;
}
.option-details .option-detail {
  display: none;
}
.option-details .option-detail[data-active="1"] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.option-details .option-images {
  margin-bottom: 1rem;
}
.option-details .option-images .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.option-details .option-images .swiper-button-next,
.option-details .option-images .swiper-button-prev {
  color: var(--inn-primary);
}
.option-details .option-images .swiper-button-next:hover,
.option-details .option-images .swiper-button-prev:hover {
  opacity: 0.8;
}
.option-details .option-images .swiper-pagination-bullet-active {
  background: var(--inn-primary);
}
.option-details .option-description {
  padding: 1rem;
  background: var(--inn-lightgrey);
  border-radius: 8px;
}
.option-details .option-description p:last-child {
  margin-bottom: 0;
}
