input[type=range] {
  width: 100%;
  margin: 5.8px 0;
  background-color: transparent;
  -webkit-appearance: none;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  background: #3ea130;
  border: 1px solid #010101;
  border-radius: 1.3px;
  width: 100%;
  height: 8.4px;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  margin-top: -6.8px;
  width: 30px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #555555;
  cursor: pointer;
  -webkit-appearance: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #3ea130;
}
input[type=range]::-moz-range-track {
  background: #3ea130;
  border: 1px solid #010101;
  border-radius: 1.3px;
  width: 100%;
  height: 8.4px;
  cursor: pointer;
}
input[type=range]::-moz-range-thumb {
  width: 30px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #555555;
  cursor: pointer;
}
input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 6.8px 0;
  color: transparent;
  width: 100%;
  height: 8.4px;
  cursor: pointer;
}
input[type=range]::-ms-fill-lower {
  background: #3ea130;
  border: 1px solid #010101;
  border-radius: 2.6px;
}
input[type=range]::-ms-fill-upper {
  background: #3ea130;
  border: 1px solid #010101;
  border-radius: 2.6px;
}
input[type=range]::-ms-thumb {
  width: 30px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #555555;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}
input[type=range]:focus::-ms-fill-lower {
  background: #3ea130;
}
input[type=range]:focus::-ms-fill-upper {
  background: #3ea130;
}

@supports (-ms-ime-align:auto) {
  input[type=range] {
    margin: 0;
  
  }
}

.nextstep_hidden {
    opacity: 0.1;
}

.nextstep_visible {
    opacity: 1;
}


#submitWeight {
    display: none;
}
#submitDimension, #submitf1, #submitf4, #resetf1, #resetf4 {
    display: none;
}
.rangeSliderContainer {
    display: block;
    align-items: stretch;
    padding: 1.5em 0;
    border-bottom: 1px solid #5555;
}
.sliderForm,
.sliderSlider {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    }

.sliderForm {
    width: auto;
    margin-bottom: 3.5rem;
    }
.sliderSlider {
   width: auto;
}
@media only screen and (min-width: 768px) {
    .rangeSliderContainer {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        padding: 1.5em 0;
        border-bottom: 1px solid #5555;
    }
    .sliderForm {
        width: 30%;
        margin-bottom: 0;
    }
    .sliderSlider {
       width: 70%;
    }
}

.rangeSliderContainer .sliderName {
    font-style: italic;
    font-weight: bold;
    text-transform: uppercase;
    width: 33.333%;
}

.rangeSliderContainer .sliderInput {
    /* background-color: green;*/
    width: 33.333%;

}
.rangeSliderContainer .sliderUnit {
/* background-color: green;*/
    text-align: left;
    width: 33.333%;
}

.rangeSliderContainer .sliderInput input {
    text-align: center;
}



.rangeSliderContainer .sliderRangeFrom {
/* background-color: yellow;*/
    text-align: left;
    width: -webkit-calc(30% - 20px);
    width: calc(30% - 20px);
    padding-right: 20px;
    font-style: italic;
    font-weight: bold;
    text-transform: uppercase;
}

.rangeSliderContainer .sliderRange {
/* background-color: red;*/
    width: -webkit-calc(40% + 40px);
    width: calc(40% + 40px);
}

.rangeSliderContainer .sliderRangeTo {
/* background-color: purple;*/
    text-align: right;
    width: -webkit-calc(30% - 20px);
    width: calc(30% - 20px);
    padding-left: 20px;
    font-style: italic;
    font-weight: bold;
    text-transform: uppercase;

}

@media only screen and (min-width: 768px) {
    .rangeSliderContainer .sliderRangeFrom {
        width: -webkit-calc(10% - 20px);
        width: calc(10% - 20px);
    }

    .rangeSliderContainer .sliderRange {
        width: -webkit-calc(80% + 40px);
        width: calc(70% + 40px);
    }

    .rangeSliderContainer .sliderRangeTo {
        width: -webkit-calc(10% - 20px);
        width: calc(20% - 20px);
    }
    
}

@media only screen and (min-width: 992px) {
    .rangeSliderContainer .sliderRangeFrom {
        width: -webkit-calc(10% - 20px);
        width: calc(10% - 20px);
    }

    .rangeSliderContainer .sliderRange {
        width: -webkit-calc(80% + 40px);
        width: calc(78% + 40px);
    }

    .rangeSliderContainer .sliderRangeTo {
        width: -webkit-calc(10% - 20px);
        width: calc(12% - 20px);
    }
    
}

@media only screen and (min-width: 1200px) {
    .rangeSliderContainer .sliderRangeFrom {
        width: -webkit-calc(10% - 20px);
        width: calc(10% - 20px);
    }

    .rangeSliderContainer .sliderRange {
        width: -webkit-calc(80% + 40px);
        width: calc(80% + 40px);
    }

    .rangeSliderContainer .sliderRangeTo {
        width: -webkit-calc(10% - 20px);
        width: calc(10% - 20px);
    }
    
}




/* 14.01.2020 MM */