.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: #ffffff;
    border-radius: 25px;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #FF6B17;
    border-radius: 25px;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #FF6B17;
    border-radius: 25px;
    cursor: pointer;
}

.credit-calculator-main-div {
    background-color: #FFD6BF;
    padding-bottom: 20px;
    box-shadow: rgba(12, 12, 12, 0.602) 0px 2px 2px 0px;
}

.input_style {
    /* font-size: 30px;
        width: 120px;
        height: 40px;
        margin-left: 10px;
        margin-right: 10px;
        border: solid 1px #5c5c5c; */
    width: 120px;
    text-align: center;
}

.input_style:focus {
    outline-color: #FF6B17;
}

.loan-err-div {
    box-shadow: rgba(12, 12, 12, 0.602) 0px 2px 2px 0px
}

@media (max-width: 992px) {
    .credit-calculator-main-div {
        margin-top: 30px;
    }
}

@media (max-width: 430px) {
    .input_style {
        width: 80px;
    }
}

.label-cls {
    margin-top: 25px;
}
.total-rows td {
    font-weight: bold;
    font-size: 18px;
    background: #E0E0E0;
}
