body {
    font: 14px/1.3 'Open sans', arial, sans-serif;
}
.bloc_calculateur {
    display: flex;
    color: white;
    height: 175px;
}
.bloc_slide {
    flex: 6;
    background-color: #57BD9F;
    position: relative;
}
.slide_step {
    width: calc(100% - 100px);
    margin-left: 20px;
}
.bloc_slide_txt {
    flex: 2;
    background: #57BD9F url('./images/sep-reglette.png') no-repeat center left;
    padding: 10px;
    font-size: 16px;
    line-height: 30px;
    font-weight: bold;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bloc_slide_benef {
    flex: 1;
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    background: #F77E61;
    height: 100%;
    margin-left: 0.7rem;
}
.slide_benef_title {
    padding: 20px 5px;
    vertical-align: middle;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    line-height: 18px;
}
.slide_benef_value {
    padding: 20px 5px;
    vertical-align: middle;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-size: 30px;
    line-height: 42px;
    min-width: 90px;
}
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    cursor: pointer;
}
.slider:hover {
    opacity: 1;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 70px;
    background: url('/images/marker.svg');
    background-repeat: no-repeat;
    background-position: center 0px;
    background-size: contain; /* Ajout pour Safari */
    cursor: pointer;
}
.slider::-moz-range-thumb {
    width: 30px;
    height: 70px;
    background: url('/images/marker.svg');
    background-repeat: no-repeat;
    background-position: center 0px;
    cursor: pointer;
}
.steps {
    display: flex;
    width: 100%;
    color: #385689;
    font-weight: 700;
}
.step {
    border-left: thin solid white;
    flex: auto;
    text-align: center;
    cursor: pointer;
}

.step2 {
    border-left: thin solid white;
    flex: auto;
    text-align: center;
    cursor: pointer;
}

.step_on {
    font-size: 16px;
    font-weight: 900;
}
.atelier {
    position: absolute;
    right: 20px;
}
.slide_title {
    margin: 1em;
    font-size: 1.5rem;
    font-weight: 600;
    height: 50px;
}
.calc_values {
    color: #ffffff;
    font-size: 22px;
    float: right;
}
.slide_txt {
    border-bottom: 1px dotted #fff;
    padding: 5px 0;
}
@media only screen and (max-width: 760px), (max-device-width: 960px) {
    .bloc_calculateur {
        flex-direction: column;
    }
    .bloc_slide_benef {
        margin-left: 0;
    }
    .bloc_slide {
        padding-bottom: 1em;
    }
}
