/*modal loan check */
.input-display {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.custom-range::-webkit-slider-runnable-track {
    background: linear-gradient(
        to right,
        #FF8E2B 0%,
        #FF8E2B var(--range-progress, 0%),
        #eee var(--range-progress, 0%),
        #eee 100%
    );
    height: 6px;
    border-radius: 3px;
}

.custom-range::-moz-range-track {
    background: linear-gradient(
        to right,
        #FF8E2B 0%,
        #FF8E2B var(--range-progress, 0%),
        #eee var(--range-progress, 0%),
        #eee 100%
    );
    height: 6px;
    border-radius: 3px;
}

.custom-range::-moz-range-progress {
    background: #FF8E2B;
    height: 6px;
    border-radius: 3px;
}

.custom-range::-webkit-slider-thumb {
    background: #FF8E2B;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-top: -6px; 
}

.custom-range::-moz-range-thumb {
    background: #FF8E2B;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}


.result-box {
    background-color: #F1F1F1;
}

.modal-content {
    border-radius: 20px;
}

.btn-close {
    opacity: 0.8;
}
@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        --bs-modal-width: 992px;
    }
}
