.m__calculator *,
.m__calculator ::after,
.m__calculator ::before {
    box-sizing: border-box
}

.m__calculator * {
    font-family: inherit;
    font-family: "Work Sans", sans-serif;
}

.m__calculator {
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
    font-size: 17px;
    color: rgb(55, 65, 81);
}

.m__calculator .m__row {
    display: block;
    /* flex */
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 20px;
    width: 100%;
}

.m__calculator .m__cell {
    flex: 1;
    padding: 4px 0;
    flex: 1 1 calc(50% - 20px);
    /*display: flex;*/
    align-items: center;
    /* background: #ccc; 
    border-bottom: 1px solid #e8e8e8;*/
    min-height: 60px;
    padding-bottom: 10px;
}

.m__calculator .m__group {
    position: relative;
    width: 100%;
}


.m__group input {
    width: 100%;
    position: relative;
    background: rgb(249, 250, 251);
    border-radius: 6px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(0 113 238 / 83%);
    border-image: initial;
    height: 50px;
    padding: 5px 10px 5px 12px;
    font-size: 20px;
    color: rgb(0 7 15);
    font-weight: 600;
}

.m__group input:focus {
    border-radius: 6px;
    border: 2px solid rgb(0 113 238 / 90%);
    outline: 0
}

.m__calculator .m__name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 17px;
    position: relative;
    flex: 1;
    color: #004193;
}

.m__calculator .m__value {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 17px;
    position: relative;
    color: #004193;

        min-width: 60px;
    margin-left: 15px;
    text-align: right;
}

.m__calculator .m__label {
    display: flex;
    align-items: center;
}


.m__calculator .noUi-horizontal {
    height: 8px;
    margin-top: 12px;
    margin-bottom: 16px;
}

.m__calculator .noUi-target {
    background: rgb(42 136 240 / 19%);
    border: 0px;
    border-radius: 4px;
    box-shadow: none;
}

.m__calculator .noUi-handle:after,
.m__calculator .noUi-handle:before {
    content: "";
    display: block;
    position: absolute;
    height: 6px;
    width: 0px;
    background: rgb(244 244 244 / 60%);
    left: 5px;
    top: 4px
}

.m__calculator .noUi-handle:after {
    left: 8px
}

.m__calculator .noUi-connect {
    box-shadow: none;
    background: linear-gradient(90deg, #0071ee 0%, rgb(5 44 88) 100%);
    transition: background 450ms ease 0s;
    border-radius: 10px;
}

.m__calculator .noUi-horizontal .noUi-handle {
    width: 22px;
    height: 22px;
    left: -9px;
    top: -8px;
    border: 1px solid #cdcdcd;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 0.5px 4px, rgba(0, 0, 0, 0.12) 0px 6px 13px;
    cursor: pointer;
    padding-top: 7px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.m__section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    max-width: 550px;
    margin: 20px auto;
}

.m__wrap {
    max-width: 800px;
    padding: 25px 30px;
    margin: auto;
    color: #0071EE;
    box-shadow: 6px 19px 38px 0px rgba(0, 113.00000000000001, 237.99999999999997, 0.2);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    border-radius: 25px;
    min-height: 300px;
    z-index: 999;
    background: white;
}

.blc_title.title_weight {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Work Sans", sans-serif;
    font-size: 35px;
    line-height: 40px;
    margin-top: 8px;
    font-weight: 600;
}



@media all and (max-width:700px) {
    .m__calculator {}

    .m__calculator .m__row {
        display: flex;
        flex-direction: column;
        align-items: initial;
        width: 100%;
        column-gap: 0;
    }

    .m__calculator .m__cell {
        max-width: 100%
    }


    .m__calculator .noUi-horizontal {
        margin-bottom: 15px
    }
}

.m__result {
    padding: 15px 30px;
    background: rgb(249, 250, 251);
    border-width: 4px 1px 1px;
    border-style: solid;
    border-image: initial;
    border-radius: 6px 6px 12px 12px;
    border-top: 4px solid #151515;
    border-color: #151515 rgb(229, 231, 235) rgb(229, 231, 235);
    overflow: hidden;
}

.blc_res.m_head {
    font-size: 22px;
}

.mm_save {
    text-align: center;
    color: rgb(107, 114, 128);
    font-family: "Work Sans", sans-serif;
    font-style: normal;
    line-height: 22px;
    overflow: initial;
    font-size: 16px;
    font-weight: 500;
}

.block_res_col .mm_save {
    line-height: 17px;
    font-size: 13px;
    color: #ffffff;
}


@media all and (max-width:700px) {
    .m__calculator {
        font-size: 16px;
    }

    .m__section {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        margin: 10px 4px;
    }

    .m__calculator .m__cell {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .m__calculator .m__name {
        min-width: auto;
        font-size: 14px !important;
    }

    .m__calculator .m__group {
        position: relative;
        flex: 1;
        width: auto;
    }

    .m__result {
        padding: 23px 23px;
        margin-top: 10px;
    }
}


/*-----For Switch Radio Buttons----*/


.m__headings {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
}

h1.m__top_head {
    font-size: 38px;
    font-weight: 500;
    margin: 0;
    margin-bottom: 10px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    text-align: center;
}

.m__bottom_head {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 13px;
    text-align: center;
    color: #004193;
}

.m__line {
    background: #e3e3e3;
    display: block;
    height: 1px;
    margin: 15px 2px;
}

.m_cell_res {
    background: #0071ee;
    color: white !important;
    padding: 15px !important;
    border-radius: 13px;
    margin: auto !important;
}

.m_cell_res .m__name {
    color: white;
    text-align: center;
    font-size: 16px;
}

.m_cell_res .m__name span{
font-size: 18px;
    font-weight: 800;
}


.m__calculator .m__row.full_flex {
    width: 100%;
    flex-basis: 100%;
    margin-top: 20px;
}

.m__calculator .m__row.full_flex .m__result {
    background: #ee2f2f;
    color: white;
    border-top: 4px solid #cb0000;
    padding: 20px 30px;
}

.block_res_col {
    display: flex;
}

.block_res_col>div {
    flex-basis: 33%
}

.canvasjs-chart-credit {
    display: none;
}


.low_risk_image {
    margin: auto;
    display: block;
    margin-top: 15px;
    max-width: 200px;
    width: 100%
}

.m__group .m_disabled {
    width: 100%;
    position: relative;
    font-size: 35px;
    font-weight: 600;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
}


.block_email{
    margin-top:15px !important;
}
.block_email .m__group{
        display: flex;
}
.button_send{
    border: 0;
    background: #0071ee;
    font-family: 'Work Sans';
    font-weight: 600;
    color: white;
    height: 50px;
    border-radius: 4px;
    min-width: 99px;
    margin-left: 10px;
    font-size: 16px;
    cursor: pointer;   
}



.msmall_res{
    /*background: #0071ee;*/
    padding: 0px !important;
    min-height: auto !important;
}
.msmall_res .m__name{
    font-size: 13px !important;
    color: #6891bf;
}


.m__bott{
    margin: 0 0 15px 0px;
}

.m__calculator .m_cell_res .m__label{
    align-items: center;
    flex-direction: column;
}
.m__bott_res{
    margin: -5px 0 30px 0px;
}

.mtable th, .mtable td {
    width: 33%;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 17px;
    position: relative;
    flex: 1;
    color: #004193;
}

.mtable th {
    background: #c5e2f1;
    text-align: center;
    padding: 6px 15px;
    border-radius: 6px;
}


.restable table{
    border: 2px solid #0071ee;
    width: 100%;
    border-collapse: collapse;
}
.restable th, .restable td {
    text-align: center;
    font-weight: 600;
    padding: 10px 10px;
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 17px;
    position: relative;
    flex: 1;
    color: #004193;
    border: 2px solid #0071ee;
    width: 100px;
    min-width: 100px;
    max-width: 100px;
}
.restable th {
    background: #0071ee;
    color: white;
    text-align: center;
    padding: 6px 15px;
    border-radius: 0;
    border-width: 0;
}


.responsive_table {
    overflow: auto;
}



@media all and (max-width:700px) {
    .block_res_col {
        display: flex;
        flex-direction: column;
    }

    .block_res_col>div {
        flex-basis: 100%;
        margin: 15px 0;
    }
}

@media all and (max-width:700px) {
    .m__top_head {
        line-height: 29px;
        font-size: 32px !important;
    }

    .m__bottom_head {
        font-size: 14px;
        line-height: 18px;
    }

    .m__wrap {
        margin: 20px;
        padding: 26px 20px;
    }

    .m_cell_res {
        width: 100%;
    }
    .button_send {
        min-width: 70px;
        margin-left: 5px;
    }

    .mtable th, .mtable td {
        font-size: 12px;
        line-height: 14px;
    }
    .mtable .m__group input {
        height: 44px;
        padding: 5px 4px 5px 5px;
        font-size: 14px;
    }
    .mtable th {
        padding: 5px 5px;
    }
}