.InputRange-slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: rgb(242, 242, 242);
    border: 1px solid rgb(242, 242, 242);
    border-radius: 100%;
    cursor: pointer;
    display: block;
    height: 28px;
    margin-left: -0.5rem;
    margin-top: -8px;
    outline: none;
    position: absolute;
    top: 50%;
    transition: -webkit-transform 0.3s ease-out, box-shadow 0.3s ease-out;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    width: 28px; }
.InputRange-slider:active {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
.InputRange-slider:focus {
    box-shadow: 0 0 0 5px rgba(63, 81, 181, 0.2); }
.InputRange.is-disabled .InputRange-slider {
    background-color: rgb(189,189,189);
    border: 1px solid rgb(189,189,189);
    box-shadow: none;
    -webkit-transform: none;
    transform: none; }

.InputRange-sliderContainer {
    transition: left 0.3s ease-out;
    margin-top: -5px;
    top: 40%; }

.InputRange-label {
    color: #aaaaaa;
    font-family: "Helvetica Neue", san-serif;
    font-size: 0.8rem;
    white-space: nowrap; }

.InputRange-label--min,
.InputRange-label--max {
    bottom: -1.4rem;
    position: absolute; }

.InputRange-label--min {
    left: 0;
    display: None;
}

.InputRange-label--max {
    right: 0;
    display: None;
}

.InputRange-label--value {
    position: absolute;
    top: -1.8rem; }

.InputRange-labelContainer {
    left: -50%;
    position: relative; }
.InputRange-label--max .InputRange-labelContainer {
    left: 50%; }

.InputRange-track {
    //background: rgb(189,189,189);
    border-radius: 0.3rem;
    display: block;
    height: 22px;
    position: relative;
    transition: left 0.3s ease-out, width 0.3s ease-out; }
.InputRange.is-disabled .InputRange-track {
    background: #eeeeee; }

.InputRange-track--container {
    left: 11px;
    /*margin-top: -1px;*/
    position: absolute;
    right: 25px;
    top: 15%; }

.InputRange-track--active {
    background: rgb(150, 150, 150); }

.InputRange {
    cursor: pointer;
    height: 32px;
    position: relative;
    width: 100%;
    background-color: black;
    border-radius: 15px;
}
.InputRange--insideTextField {
    transform: translate(0px, 20px);
}