.call_float_button {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 80px;
    font-size: 23px;
    color: white;
    background-color: #00acee;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 999;
}

.desktop_call_button {
    display: block;
}

.mobile_call_button {
    display: none;
}

.rangeSlider {
    -webkit-appearance: none;
    appearance: none;
    height: 15px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.rangeSlider:hover {
    opacity: 1;
}

.rangeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 15px;
    background: blue;
    cursor: pointer;
}

.rangeSlider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #4CAF50;
    cursor: pointer;
}

.modalLabel {
    font-size: 12px;
    margin-left: 15px;
}

@media all and (max-width: 700px) {
    .desktop_call_button {
        display: none;
    }
    .mobile_call_button {
        display: block;
    }
    .call_float_button {
        bottom: 80px;
        right: 40px;
    }
}
