/* ========== КАЛЬКУЛЯТОР РАССРОЧКИ ========== */
.custom-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    outline: none;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #f0d43a;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #e6c511;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-top: -7px;
}

.custom-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: #f0d43a;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #e6c511;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.custom-range::-webkit-slider-runnable-track {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
}

.custom-range::-moz-range-track {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
}