body {
    overflow-x: hidden;
}


#nebenkostenrechner {
    font-family: OpenSans, sans-serif;
    max-width: 1150px;
    width: 100%;
    box-sizing: content-box;
    word-wrap: normal;
}

#nebenkostenrechner .opt-header {
    position: relative;
    width: 100%;
    height: 115px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}

#nebenkostenrechner .opt-header__background {
    position: absolute;
    background: #216197;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

#nebenkostenrechner .opt-header__text {
    color: white;
    font-size: 1.8rem;
    font-family: Muli, sans-serif;
    font-weight: 700;
}

#nebenkostenrechner .opt-body {
    padding: 40px 6.7% 40px 8.5%;
    position: relative;
    background: white;
    display: flex;
    justify-content: space-between;
}

#nebenkostenrechner .opt-body__background {
    position: absolute;
    background: #f0f4f9;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: 0 -50vw;
    z-index: -1;
}

#nebenkostenrechner .opt-body__slider-wrapper {
    width: 100%;
    margin-bottom: 50px;
}

#nebenkostenrechner .opt-body__slider-text-above-wrapper, #nebenkostenrechner .opt-body__slider-text-below-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

#nebenkostenrechner .opt-body__slider-text-below-wrapper {
    margin-top: -5px;
}

#nebenkostenrechner .opt-body__slider-text-below, #nebenkostenrechner .opt-body__slider-text-above {
    font-size: 15px;
}

#nebenkostenrechner input::-webkit-outer-spin-button, #nebenkostenrechner input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#nebenkostenrechner input[type=number] {
    -moz-appearance: textfield;
}

#nebenkostenrechner input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    padding-top: 15px;
    margin-bottom: 0;
}
#nebenkostenrechner .opt-body__section-one input[type="range"] {
    background: rgb(233,239,245);
}

#nebenkostenrechner input[type="range"]::-webkit-slider-runnable-track {
    height: 7px;
    -webkit-appearance: none;
    background: #d4d4d4;
    border-radius: 5px;
    margin-bottom: 3px;
}

#nebenkostenrechner input[type="range"]::-webkit-slider-thumb {
    margin-top: -10px;
    -webkit-appearance: none;
    background-color: #216197;
    height: 26px;
    width: 26px;
    border-radius: 100%;
    border: 3px solid white;
    cursor: ew-resize;
}

#nebenkostenrechner input[type="range"]:focus {
    outline: 0;
}

/** FF*/
#nebenkostenrechner input[type="range"]::-moz-range-progress {
    background-color: #216197;
    height: 7px;
    border-radius: 5px;
}

#nebenkostenrechner input[type="range"]::-moz-range-track {
    background-color: #d4d4d4;
    height: 7px;
    border-radius: 5px;
}

#nebenkostenrechner input[type="range"]::-moz-range-thumb {
    background-color: #216197;
    height: 18px;
    width: 18px;
    border-radius: 100%;
    border: 3px solid white;
    cursor: ew-resize;
}

#nebenkostenrechner input[type="range"]::-moz-focus-outer {
    border: 0;
}

/* IE*/
#nebenkostenrechner input[type="range"]::-ms-fill-lower {
    background-color: #216197;
}

#nebenkostenrechner input[type="range"]::-ms-fill-upper {
    background-color: #d4d4d4;
}

#nebenkostenrechner .opt-body__input {
    -webkit-appearance: none;
    -webkit-text-fill-color: currentColor;
    opacity: 1;
    width: 100%;
    height: 35px;
    border-radius: 5px;
    background: rgb(251, 251, 251) none repeat scroll 0% 0%;
    border: 0px none;
    box-shadow: rgb(205, 205, 205) 0px 0px 5px inset;
    text-align: center;
    font-size: 20px;
    color: black;
    font-weight: 700;
    font-size: 17px;
}

#nebenkostenrechner .opt-body__input-wrapper {
    width: 60%;
    position: relative;
    display: flex;
    align-items: center;
}

#nebenkostenrechner .opt-body__slider-input-wrapper .opt-body__input {
    margin-bottom: 10px;
}

#nebenkostenrechner .opt-body__input-label {
    position: absolute;
    right: 7.5%;
    font-size: 14px;
}

#nebenkostenrechner .opt-body__slider-input-wrapper .opt-body__input-label {
    margin-bottom: 10px;
}

#nebenkostenrechner .opt-body__sliders {
    width: 49%;
}

#nebenkostenrechner .opt-body__info {
    width: 45%;
}
#nebenkostenrechner .opt-body__info-section {
    background: #f0f4f9;
    padding: 0px 15px 10px 25px;
    height: 59.5%;
    justify-content: space-evenly;
    display: flex;
    flex-direction: column;
}

#nebenkostenrechner .opt-body__info-section:last-child {
    background: #216197;
    margin-top: 5px;
    padding: 30px 15px 30px 25px;
    height: unset;
}

#nebenkostenrechner .opt-body__info-section:last-child .opt-body__text, #nebenkostenrechner .opt-body__info-section:last-child .opt-body__number, #nebenkostenrechner .opt-body__info-section:last-child .opt-body__label{
    color: #FFF;
}

#nebenkostenrechner .opt-body__row-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

#nebenkostenrechner .opt-body__text, #nebenkostenrechner .opt-body__number, #nebenkostenrechner .opt-body__label {
    color: #216197;
}
#nebenkostenrechner .opt-body__text {
    font-size: 15px;
}
#nebenkostenrechner .opt-body__number {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
}
#nebenkostenrechner .opt-body__label {
    margin-left: 30px;
    line-height: 1.2;
}
#nebenkostenrechner .opt-body__number-label-wrapper {
    display: flex;
    align-items: flex-end;
}
#nebenkostenrechner .opt-inquiry-button-wrapper {
    display: flex;
    justify-content: center;
    padding: 25px 0;
    background: #fdefe0;
    margin-top: 5px;
}

#nebenkostenrechner .opt-inquiry-button {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    background: rgb(239, 125, 0) none repeat scroll 0% 0%;
    color: white;
    border: 0px none;
    border-radius: 2px;
    align-self: center;
    opacity: 1;
    transition: opacity 0.5s ease 0s;
    padding: 8px 40px;
    text-decoration: none;
    cursor: pointer;
}
@media screen and (max-width: 950px) {
    #nebenkostenrechner .opt-body__label {
        margin-left: 15px;
    }
}

@media screen and (max-width: 767px) {
    #nebenkostenrechner .opt-body__sliders {
        width: 100%;
        padding: 0 8.5%;
    }
    #nebenkostenrechner .opt-body__info {
        width: 100%;
    }
    #nebenkostenrechner .opt-body__info-section {
        height: unset;
        padding: 60px 8.5% 60px 7%;
    }
    #nebenkostenrechner .opt-body__info-section:last-child {
        height: unset;
        padding: 30px 8.5% 30px 7%;
    }
    #nebenkostenrechner .opt-body {
        flex-wrap: wrap;
        padding: 40px 0 0;
    }
    #nebenkostenrechner .opt-body__input-wrapper {
        width: 40%;
    }
    #nebenkostenrechner .opt-inquiry-button-wrapper {
        flex-wrap: wrap;
    }
    #nebenkostenrechner .opt-inquiry-button {
        font-size: 1.25rem;
    }
    #nebenkostenrechner .opt-body__text {
        font-weight: 700;
        font-size: 1rem;
        width: 60%;
        text-align: right;
    }
    #nebenkostenrechner .opt-body__info-section:last-child .opt-body__text {
        font-size: 1.45rem;
        line-height: 1.1;
    }
    #nebenkostenrechner .opt-body__label {
        font-weight: 700;
        font-size: 1rem;
    }
    #nebenkostenrechner .opt-body__row-wrapper {
        margin-bottom: 30px;
        justify-content: space-between;
    }
    #nebenkostenrechner .opt-body__row-wrapper:last-child {
        margin-bottom: 0;
    }
    #nebenkostenrechner .opt-body__number {
        font-size: 1.45rem;
    }
}
@media screen and (max-width: 640px) {
    #nebenkostenrechner .opt-body__slider-text-below-wrapper {
        display: none;
    }
    #nebenkostenrechner input[type="range"] {
        display: none;
    }
    #nebenkostenrechner .opt-body__input {
        height: 42px;
        font-size: 1.4rem;
    }
    #nebenkostenrechner .opt-body__number {
        font-size: 1.4rem;
    }
    #nebenkostenrechner .opt-body__input-wrapper {
        width: 50%;
    }
    #nebenkostenrechner .opt-body__slider-text-above {
        font-size: 1rem;
    }
}
@media screen and (max-width: 480px) {
    #nebenkostenrechner .opt-header__text {
        font-size: 1.6rem;
    }
    #nebenkostenrechner .opt-body {
        padding: 30px 0 0;
    }
    #nebenkostenrechner .opt-body__slider-text-above-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    #nebenkostenrechner .opt-body__slider-text-above {
        width: 80%;
        margin-bottom: 10px;
    }
    #nebenkostenrechner .opt-body__slider-text-above br {
        display: none;
    }
    #nebenkostenrechner .opt-body__input-wrapper {
        width: 80%;
    }
    #nebenkostenrechner .opt-inquiry-button-wrapper {
        padding: 25px 9.5%;
    }
    #nebenkostenrechner .opt-inquiry-button {
        font-size: 1rem;
    }
    #nebenkostenrechner .opt-body__text {
        width: 66%;
    }
    #nebenkostenrechner .opt-body__slider-wrapper {
        margin-bottom: 30px;
    }
    #nebenkostenrechner .opt-body__slider-wrapper:last-child {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 420px) {
    #nebenkostenrechner .opt-header__text {
        font-size: 1.4rem;
    }
    #nebenkostenrechner .opt-body__text {
        width: 50%;
    }
    #nebenkostenrechner .opt-inquiry-button {
        padding: 8px 10%;
    }
}

@media screen and (max-width: 380px) {
    #nebenkostenrechner .opt-inquiry-button {
        padding: 8px 5%;
    }
    #nebenkostenrechner .opt-inquiry-button-wrapper {
        padding: 25px 8.5%;
    }
}
