#einnahmen-rechner-root {
    width: 100%;
    font-family: 'Open Sans' !important;
    max-width: 800px;
    margin: 0 auto;
}

#einnahmen-rechner-root label {
    margin-bottom: 20px;
    color: #14183E;
}

#einnahmen-rechner-root .nav-buttons {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
}

#einnahmen-rechner-root .nav-buttons button {
    border: 0 !important;
    border-radius: 10px;
    font-size: 0.8em;
    font-weight: 500;
    transition: 0.3s all;
}
#einnahmen-rechner-root .nav-buttons button:hover,
#einnahmen-rechner-root .nav-buttons button:focus,
#einnahmen-rechner-root .nav-buttons button:active {
    background-color: #3C7272;
    color: white;
}

#steps .progress {
    height: 10px;
    background: #E6E6E6;
    margin-bottom: 20px;
  }
  #steps .progress div {
    height: 100%;
    background: #3C7272;
    transition: width 0.3s ease;
  }
  .step {
    margin: 20px 0;
  }
  .step input, .step select {
    display: block;
    margin: 10px 0;
    padding: 8px;
  }
  .step button {
    margin: 10px 5px;
  }
  .footnote {
    font-size: 0.8em;
    color: #777;
  }
  
  .progress-steps {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 32px;
    position: relative;
}
.step-wrapper .circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.8em;
    color: rgba(20,24,62,0.5);
    transition: 0.3s all;
}
.step-wrapper.active .circle {
    background-color: #3C7272;
    color: white;
}
.step-wrapper.complete .circle {
    background-color: #3C7272;
    color: white;
    font-size: 18px;
}
.step-wrapper.complete .label,
.step-wrapper.active .label {
    color: #3C7272 !important;
}
.step-wrapper.complete + .line {
    background-color: #3C7272;
}
.step-wrapper .label {
    margin-top: 5px;
    font-size: 12px;
    text-align: center;
    position: absolute;
    bottom: -25px;
    font-weight: 600;
    color: rgba(20,24,62,0.5);
}
.line {
    height: 2px;
    background-color: #E6E6E6;
    flex: 1;
    margin: 0;
    transition: 0.3s all;
}

.option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.option-button {
    margin-bottom: 0 !important;
}
.option-button-span {
    padding: 15px 35px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9em;
    background-color: #F7EAE3;
    color: #14183E;
    user-select: none;
    transition: 0.3s all;
    font-weight: 500;
    margin-bottom: 0 !important;
    text-align: center;
    display: block;
}
.option-button-span:hover {
    background-color: #A4D4D4;
}

.option-button input:checked + .option-button-span {
    background-color: #A4D4D4;
}

button.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.option-button-bundesland {
    min-width: calc(50% - 5px);
}

.option-button-wohnflaeche,
.option-button-bezirk {
    min-width: calc(33% - 5.5px);
}

.option-button-schlafzimmer {
    min-width: calc(25% - 7.5px);
}

.input-name,
.input-email {
    font-weight: 500;
    background: #F7EAE3;
    max-width: 500px;
    display: block;
    border-color: #E6E6E6 !important;
    padding: .8rem 1.2rem !important;
}

.input-name:focus,
.input-email:focus {
    background-color: #FFFFFF;
    outline: none;
}

h3.total-amount {
    font-family: 'Volkhov';
    font-weight: 600;
}

p.option-button-span {
    font-size: 1.6rem;
    font-weight: bold;
    cursor: default;
    max-width: 200px;
    margin-top: 20px;
    margin-bottom: 50px !important;
}
p.option-button-span:hover {
    background: #F7EAE3 !important;
    color: inherit !important;
}
.disclaimer {
    color: #5E6282;
    font-size: 0.7em;
    line-height: 1.6em;
    display: block;
}
.disclaimer a {
    color: var( --e-global-color-51d3d7f );
}

.disclaimer a:hover {
   color: var( --e-global-color-primary );
}

.acceptance-field input[type="checkbox"] {
    display: none;
}
  
.acceptance-field input[type="checkbox"] + span {
    line-height: 20px;
}
 
.acceptance-field input[type="checkbox"] + span::before {
    position: relative;
    cursor: pointer;
    user-select: none;
    display: block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    border: 1px solid #E6E6E6;
    border-radius: 3px;
    background: #F7EAE3;
    content: "";
    margin-right: 10px;
    float: left;
}
  
.acceptance-field input[type="checkbox"]:checked + span::before {
    content: "✔";
    background: #A4D4D4;
    border-color: #A4D4D4;
    font-size: 20px;
    text-align: center;
    line-height: 28px;
}

.acceptance-field input[type="checkbox"] + span a {
    color: #3C7272;
}

.acceptance-field input[type="checkbox"] + span a:hover {
    text-decoration: underline;
}

.cf-turnstile {
    margin-top: 30px;
}

@media only screen and (min-width: 1025px) {
    .option-button-bezirk {
        min-width: calc(25% - 7.5px);
    }
}

@media only screen and (max-width: 767px) {
    .option-button-bundesland {
        min-width: 100%;
    }
    .option-button-bezirk,
    .option-button-wohnflaeche,
    .option-button-schlafzimmer {
        min-width: calc(50% - 5px);
    }
    .step-wrapper:not(.active) .label {
        display: none;
    }
 }