/* Styles for the debt amount range input */


.slider-form {
    -webkit-appearance: none;
    width: 80%;
    height: 22px;
    background: #1F2021;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
	border-radius: 10px;
}

.slider-form::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f69323;
    cursor: pointer;
}

.slider-form::-moz-range-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f69323;
    cursor: pointer;
}



 