﻿
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.section__slider {
    width: 100%;
    display: flex;
    justify-content: center;
}

.container__slider {
    display: flex;
    direction: rtl;
    flex-direction: column;
    padding: 32px 24px;
    width: 100%;
    max-width: 650px;
}

.sectionTitle__slider {
    font-size: 20px;
    line-height: 26px;
    margin: 8px 0 0;
    font-weight: 400;
}

.sectionDescription__slider {
    font-size: 14px;
    line-height: 23.2px;
}

.sliderContainer__slider {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
}

.label__slider {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
}

.numberInput__slider {
    font-size: 40px;
    border: none;
    background: transparent;
}

    .numberInput__slider:focus {
        border: 0px;
        font-family: "ICPangeaText";
        -webkit-tap-highlight-color: transparent;
        outline: none;
        padding: 0;
    }

.rangeInputBox {
    display: flex;
    flex-direction: column;
}

.rangeInput__slider {
    accent-color: var(--main-bg-color);
    cursor: pointer;
    height: 3px;
}

.minError, .maxError {
    display: none;
    color: red;
}

.minMax {
    display: block;
}

.slider-error {
    accent-color: red;
}

.minMax__slider {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    color: #757575;
}

.selected {
    border: 2px solid blue;
}



.numberInputBox__slider {
    position: relative;
}

.loanAmountApprovalBtn {
    width: 327px;
    height: 52px;
    padding: 14px 16px;
    border: unset;
    border-radius: 4px;
    background-color: var(--main-bg-color);
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 24px auto 56px;
    cursor: pointer;
}


.editLoanImg {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.loanAmountDitails {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#numberWithComma_container {
    display: flex;
    align-items: baseline;
}

#numberWithComma {
    position: relative;
    font-size: 40px;
}

.displayNone {
    display: none !important;
}


@media screen and (max-width:768px) {
    .container__slider {
        padding: 24px 24px 0;
    }

    .sliderContainer__slider {
        margin: 8px 0 0;
    }

    .loanAmountApprovalBtn {
        width: 100%;      
        margin: 32px 0;
    }
}