.m__calculator *,
.m__calculator ::after,
.m__calculator ::before {
    box-sizing: border-box
}

.m__calculator * {
    font-family: inherit;
    font-family: "Space Grotesk", sans-serif;
}

.m__calculator {
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
    font-size: 17px;
}

.m__calculator .m__row {
    display: block;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 20px;
    width: 100%;
}

.m__calculator .m__row.result__desktop {}

.m__calculator .m__cell {
    flex: 1;
    margin: 0 0 15px 0px;
    padding: 4px 0;
    flex: 1 1 calc(50% - 20px);
    /*display: flex;*/
    align-items: center;
    /* background: #ccc; 
    border-bottom: 1px solid #e8e8e8;*/
    min-height: 60px;
}

.m__calculator .m__cell:last-child {
    margin: 0
}

.m__calculator .m__group {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    column-gap: 23px;

}


.m__group input {
    width: 100%;
    background: #ffffff;
    border-radius: 6px 6px 2px 2px;
    border-width: 1px;
    border-style: solid;
    border-color: #e6e6e6;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: nowrap;
    text-align: left;
    height: 50px;
    padding: 3px 10px 3px 12px;
    font-size: 20px;
    font-weight: 700;
    color: #01574e;
    font-family: "Space Grotesk", sans-serif;
}

.m__group input:focus {
    outline: 0;
    /*border-color: rgb(1 113 245 / 100%);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    background: rgb(255, 255, 255);*/


    border-color: #21a570 !important;
}

.m__calculator .m__name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
    position: relative;
    flex: 1;
    color: #0f1f3d;
    text-align: left;
}

.m__calculator .m__label {
    display: flex;
}

.noUi-base,
.noUi-handle {
    transform: none !important;
    transition: 0s !important;
}

.m__calculator .noUi-horizontal {
    height: 5px;
    width: 100%;
}

.m__calculator .noUi-target {
    border: 0px;
    border-radius: 0 0 4px 4px;
    background: #d6d6d6;
    margin-top: -2px;
    cursor: pointer;
    /*box-shadow: 0 2px 0px 2px #0f1f3d;
    -webkit-box-shadow: 0px 6px 9px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 15px 0px rgb(10 11 11 / 9%);*/
}



.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: #21a570;
    transition: 0s;
    border-radius: 0 0 4px 4px;
}

.m__calculator .noUi-horizontal .noUi-handle {
    width: 19px;
    height: 19px;
    left: -11px;
    top: -7px;
    border: 3px solid #21a570;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
}

.m__section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 30px;
    border-radius: 8px;
    background: #f3f4f6;
}

.blc_title.title_weight {
    font-size: 40px;
    line-height: 1;
    margin-top: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 800;
    color: #21a570;
    text-align: center;
}

.frequency_selected {

    font-weight: 700;
    font-size: 16px;
    color: #0a6440;
    /* line-height: 1; */
    text-align: center;
}
.frequency_selected.extrasmall {
font-weight: 700;
    font-size: 11px;
    margin-top: 5px;
    color: #0a6440;
    /* line-height: 1; */
    text-align: center;
}

.placeholder_labels {
    font-size: 12px;
    color: #787676;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.placeholder_labels span {
    font-size: 14px;
    color: #787676;
    user-select: none;
}


.m_devider {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
}

.lead_sec {
    margin: 30px 0 20px 0;
    display: inline-block;
    text-align: center;
}

.lead_sec p {
    margin: 0;
    font-size: 13px;
    text-align: center;
}

.lead_sec a.lead_button {
    display: inline-block;
    color: #0f1f3d;
    background-color: #03ff99;
    border-radius: 5px;
    margin-top: 13px;
    margin-bottom: 0;
    margin-left: 0;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    font-size: 16px;
}

@media all and (max-width:700px) {
    .m__calculator .m__row {
        display: flex;
        flex-direction: column;
        align-items: initial;
        width: 100%;
        column-gap: 0;
        max-width: none !important;
    }

    .m__calculator .m__cell {
        max-width: 100%
    }



}

.m__result {
    display: block;

    background: #ffffff;
    border-width: 4px 1px 1px;
    border-style: solid;
    border-image: initial;
    border-radius: 6px 6px 12px 12px;
    border-top: 4px solid rgb(32 92 255);
    border-color: rgb(23 105 62) rgb(229, 231, 235) rgb(229, 231, 235);
    overflow: hidden;
    margin-top: 5px;
    padding: 10px 25px;


}


.mm_save {
    text-align: center;
    font-family: inherit;
    font-style: normal;
    line-height: 1.8;
    overflow: initial;
    font-size: 33px;
    font-weight: 900;
    margin-bottom: 0px;
    color: #0f1f3d;
}



/*-----For Switch Radio Buttons----*/




/*-----For Switch Radio Buttons----*/

.m__calculator .m__row.result__desktop {
    min-width: 450px;
}

.m_devider3{
    justify-content: center !important;
}

@media all and (max-width:700px) {

    .m__result {
        padding: 10px 14px;
    }


    .m__calculator {
        font-size: 16px;
    }

    .m__calculator .m__row.result__desktop {
        min-width: auto;
    }

    .m__section {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        margin: 15px;
        padding: 0
    }

    .m__calculator .m__cell {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .m__calculator .m__name {
        min-width: auto;
    }

    .m__calculator .m__group {
        position: relative;
        flex: 1;
        width: auto;
    }

    .mm_save {
        line-height: 1;
        font-size: 25px;
    }

    .blc_title.title_weight {
        font-size: 22px;

    }


    .frequency_selected {
        font-size: 13px;
    }

    .lead_sec {
        margin: 18px 0 20px 0;
    }

    .m_devider {
        justify-content: space-around;
        gap: 0px;
    }
    .frequency_selected.extrasmall {
        max-width: 70px;
    }

    .m_devider3{
        justify-content: center;
        gap: 5px;
    }
}