.progress_bar{
    display: flex;
    justify-content: space-between;
    padding: 5px 0 5px 0;
}
.progress_bar span{
    display: block;
    flex-basis: 25%;
    font-size: 14px;
}
.progress_bar .slideContainer{
    flex-basis: 75%;
    position: relative;
    margin: 11px auto;
}
.slideContainer{
    width: 75%;
    margin-top: 5%;
    position: relative;
}
.slider{
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: #F1F9FF;
    outline:none;
    opacity: 0.8;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border-radius: 10px;
}

.slider::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance:none;
    width: 20px;
    height: 20px;
    background: #3FD0C9;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
}
.slider::-moz-range-thumb{
    width: 20px;
    height: 20px;
    background: yellow;
    border: 1px solid #fff;
    border-radius: 50%;
}
.progress_bar p{
    color:white;
    font-size: 14px;
}
#selector{
    height: 104px;
    /*width: 48px;*/
    position: absolute;
    bottom: -35px;
    left: -5%;
    transform: translateX(-50%);
    z-index: 2;
}
#value{
    position: absolute;
    top: 30%;
    left: 0%;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    display: flex;
    color: #000;
}
#value::after{
    content: 'months';
    padding-left: 2px;
}

/*====================2=================*/
#selector2{
    height: 104px;
    /*width: 48px;*/
    position: absolute;
    bottom: -35px;
    left: -5%;
    transform: translateX(-50%);
    z-index: 2;
}
#value2{
    position: absolute;
    top: 30%;
    left: 0%;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    display: flex;
    color: #000;
}
#value2::after{
    content: 'miles';
    padding-left: 2px;
}
/*====================3=================*/
#selector3{
    height: 104px;
    /*width: 48px;*/
    position: absolute;
    bottom: -35px;
    left: -5%;
    transform: translateX(-50%);
    z-index: 2;
}
#value3{
    position: absolute;
    top: 30%;
    left: 0%;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    display: flex;
    color: #000;
}
#value3::before{
    content: '$';
    padding-right: 2px;
}
/*reponsive*/
@media screen and (max-width: 480px){
    .progress_bar span {
        font-size: 12px;
        padding-right: 30px;
    }
    #value {
        font-size: 12px;
        right: -30px;
    }
    #value2 {
        font-size: 12px;
        right: -30px;
    }
    #value3 {
        font-size: 12px;
        right: -30px;
    }
}