.btn-primary.disabled, .btn-primary:disabled, .btn-primary[disabled] {
    background-color: rgb(227,6,19);
    border-color: rgb(227,6,19);
}

.range_container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.sliders_control {
    position: relative;
    min-height: 50px;
}

.form_control {
    position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
}

input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb:hover {
    background: #f7f7f7;
}

input[type=range]::-webkit-slider-thumb:active {
    box-shadow: inset 0 0 3px rgb(227,6,19), 0 0 9px rgb(227,6,19);
    -webkit-box-shadow: inset 0 0 3px rgb(227,6,19), 0 0 9px rgb(227,6,19);
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    opacity: 0;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 2px;
    width: 100%;
    position: absolute;
    background-color: rgb(227,6,19);
    pointer-events: none;
}

.form_control_container {
    border: 2px solid #000;
    border-radius: 10px;
    padding: 0.5rem 1.5rem;
}

.form_control_container input[type=number] { border: 0; padding:0; height: 1.5rem;}



#fromSlider {
    height: 0;
    z-index: 10;
}

.input-group-text {
    padding: .3rem .75rem;
}

.btn-ue.isopen {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
}

.btn-ue.hasselected {
    background-color: #C91214;
    background-image: none;
    color: #FFF;
    text-shadow: none;
}

.btn-ue.hasselected.dropdown-toggle:after {
    color: #FFF;
}

