:root {
    --bg: #0A2472;
    --bg-hover: #0A2472;
    }
    .sec_new_emi_cal label {
        color: #515151;
    }
    .sec_new_emi_cal .card .col1 {
        display: flex;
        justify-content: center;
        align-items: left;
        flex-direction: column;
    }
    .sec_new_emi_cal .card {
        /* padding: 20px 50px 10px 50px; */
        border-radius: 6px;
        /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
    }
    /* .sec_new_emi_cal .card .output {
        margin-left: 50px;
    } */

    .sec_new_emi_cal .outputText {
        font-weight: 600;
    }
    .sec_new_emi_cal .input-group-text {
        min-width: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sec_new_emi_cal .input-group-text, input[type=number], input[type=number]:focus {
        background-color: #D8D8EB;
        border: none!important;
        outline: none;
        box-shadow:none !important;
        font-size: 2rem;
        font-weight: 400;
        color: #0A2472;
        border-radius: 4px;
    }
    .sec_new_emi_cal .cl_loan_tenure .input-group-text {
        padding: 0;
    }
    .sec_new_emi_cal input::-webkit-outer-spin-button,
    .sec_new_emi_cal input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    .sec_new_emi_cal input[type=number] {
        -moz-appearance: textfield;
    }

    /* Range Start */
    .sec_new_emi_cal input[type="range"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        width: 100%;
        height: 5px;
        padding: 0;
        border-radius: 10px;
        outline: none;
        cursor: pointer;
    }

    /*Chrome thumb*/
    .sec_new_emi_cal input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        -moz-appearance: none;
        -webkit-border-radius: 5px;
        /*16x16px adjusted to be same as 14x14px on moz*/
        height: 25px;
        width: 25px;
        border-radius: 100%;
        background: #e7e7e7;
        border: 8px solid #0A2472;
    }

    /*Mozilla thumb*/
    .sec_new_emi_cal input[type="range"]::-moz-range-thumb {
        -webkit-appearance: none;
        -moz-appearance: none;
        -moz-border-radius: 5px;
        height: 15px;
        width: 15px;
        border-radius: 100%;
        background: #e7e7e7;
        border: 8px solid #0A2472;
    }

    /*IE & Edge input*/
    .sec_new_emi_cal input[type=range]::-ms-track {
        width: 100%;
        height: 5px;
        /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
        background: transparent;
        /*leave room for the larger thumb to overflow with a transparent border */
        border-color: transparent;
        border-width: 2px 0;
        /*remove default tick marks*/
        color: transparent;
    }

    /*IE & Edge thumb*/
    .sec_new_emi_cal input[type=range]::-ms-thumb {
        height: 15px;
        width: 15px;
        border-radius: 100%;
        background: #e7e7e7;
        border: 8px solid #0A2472;
    }

    /*IE & Edge left side*/
    .sec_new_emi_cal input[type=range]::-ms-fill-lower {
        background: #0A2472;
        border-radius: 2px;
    }

    /*IE & Edge right side*/
    .sec_new_emi_cal input[type=range]::-ms-fill-upper {
        background: #c5c5c5;
        border-radius: 2px;
    }

    /*IE disable tooltip*/
    .sec_new_emi_cal input[type=range]::-ms-tooltip {
        display: none;
    }
    /* Range End */

    .sec_new_emi_cal .radio_container {
        /* display: flex;
        margin-left: 0;
        height: 100%; */

        display: flex;
        /* margin-left: 5px; */
        height: 80%;
        width: 95%;
        border: 2px solid var(--bg-hover);
        border-radius: 4px;
    }
    .sec_new_emi_cal .radio_container input[type="radio"] {
        display: none;
    }
    .sec_new_emi_cal .radio_container label {
        width: 90px;
        background-color: transparent;
        color: var(--bg);
        padding: 0.1rem 0.5rem;
        cursor: pointer;
        transition: 0.5s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sec_new_emi_cal .radio_container label:hover {
        background-color: #0A2472;
        color: #fff;
    }
    .sec_new_emi_cal .radio_container input[type="radio"]:checked + label {
        background-color: var(--bg-hover);
        color: #fff;
    }

@media screen and (min-width:320px) and (max-width:768px) {
    /* .sec_new_emi_cal .card {
        padding: 10px;
    }
    .sec_new_emi_cal .card .output {
        margin-left: 0;
    } */

    .sec_new_emi_cal .card1 {
        margin-bottom: 20px;
    }
    .sec_new_emi_cal .card1, .sec_new_emi_cal .card2 {
        height: auto!important;
        padding: 20px 10px!important;
    }



}