input[type="range"]::-webkit-slider-thumb {
    background: #2caaa4;
    -webkit-appearance: none;
    height: 1em;
    width: 1em;
    cursor: pointer;
    border-radius: 10px;
    pointer-events: auto;
    margin-top: -6px;
}

.range-container {
    position: relative;
}

input[type="range"]::-ms-thumb {
    background: #2caaa4;
    appearance: none;
    height: 1em;
    width: 1em;
    cursor: pointer;
    border-radius: 10px;
    pointer-events: auto;
    margin-top: -6px;
}

.slider-track {
    width: 100%;
    height: 5px;
    position: absolute;
    border-radius: 5px;
}

.range-wrap {
    position: relative;
    width: 100%;
    height: 50px;
}

input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 3px;
}

input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    height: 3px;
}

input[type="range"] {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    pointer-events: none;
    outline: none;
    width: 100%;
    cursor: pointer;
}

.form-range {
    border: none;
    box-sizing: border-box;
    margin: 0;
}

.range-output {
    display: flex;
    margin-bottom: 20px;
}

.min-output-cost,
.min-output {
    padding-right: 4px;
}

input[type="range"]::-moz-range-thumb {
    background: #2caaa4;
    -moz-appearance: none;
    height: 1em;
    width: 1em;
    cursor: pointer;
    border: 1px solid #2caaa4;
    border-radius: 10px;
    pointer-events: auto;
}

@-moz-document url-prefix() { 
    .slider-track {
        margin-top: 7px;
    }
  }


