.m__calculator *,
.m__calculator ::after,
.m__calculator ::before {
    box-sizing: border-box
}

.m__calculator * {
    font-family: inherit;
    font-family: 'Inter', 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: 50%;
}

.m__calculator .m__cell {
    flex: 1;
    /* margin: 0 0 15px 0px; */
    padding: 8px;
    flex: 1 1 calc(50% - 20px);
    /*display: flex;*/
    align-items: center;
    /* background: #ccc; 
    border-bottom: 1px solid #e8e8e8;*/
    min-height: 60px;
}

.m__calculator .m__group {
    position: relative;
    width: 100%;
}


.m__group input, .m__group select{
    width: 100%;
    position: relative;
    background: rgb(41 41 41);
    border-radius: 6px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(72 72 72);
    border-image: initial;
    height: 46px;
    padding: 5px 10px 5px 12px;
    font-size: 15px;
    color: rgb(180 180 180);
    font-weight: 600;
}
.m__group input:focus, .m__group select:focus{
    border: 2px solid rgb(192 27 155);
    outline: 0
}

.mform-select select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

.mform-select {
position: relative;
}

.mform-select:before {
    position: absolute;
    top: 50%;
    right: 18px;
    content: ' ';
    width: 0;
    height: 0;
    margin-top: -2px;
    border-style: solid;
    border-width: 6px 7px 0 7px;
    border-color: rgb(169 169 169) transparent transparent transparent;
    pointer-events: none;
    z-index: 2;
}










.m__calculator .m__group.mb_2 {
    margin-bottom: 13px;
}
.m__calculator .m__group.ml_2 {
    margin-left: 10px;
}

.m__calculator .m__addons_left {
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    height: 45px;
    left: 12px;
    text-align: center;
    display: flex;
    align-items: center;
}

.m__calculator .m__addons_right {
    left: auto;
    font-size: 16px;
    position: absolute;
    height: 43px;
    right: 15px;
    top: 0;
    text-align: center;
    font-weight: 900;
    display: flex;
    align-items: center;
}

.m__calculator .m__name {
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 17px;
    position: relative;
    flex: 1;
    color: white;
    font-size: 15px
}
.m__calculator .m__value {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 17px;
    position: relative;
    color: rgb(255 255 255);
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #327ee9, #ee22e7);
    -webkit-background-clip: text;
    background-clip: text;
}
.m__calculator .m__label {
    display: flex;
}

.m__calculator .m__title {
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: normal;
    line-height: 1.125;
    margin-bottom: 30px;
}


.m__calculator .noUi-horizontal {
height: 5px;
    margin-top: -4px;
    margin-bottom: 10px;
}
.m__calculator .m__group.no_marge .noUi-horizontal {
        margin-bottom: 0px
}

.m__calculator .noUi-target {
  background: rgb(72 72 72);
    border: 0px;
    border-radius: 0 0 4px 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(to right, #404ddb, #b920aa 50%, #d80b6e);
    transition: background 450ms ease 0s;
    border-radius: 0 0 4px 4px;
}

.m__calculator .noUi-horizontal .noUi-handle {

    width: 16px;
    height: 16px;
    left: -8px;
    top: -5px;
    border: 2px solid #cb1976;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 0.5px 4px, rgb(135 135 135) 0px 1px 5px;
    cursor: pointer;
    padding-top: 7px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;

  }
.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin {
    -webkit-transition: none;
    transition: none
}
.m__section{
display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
    max-width: 1200px;
    margin: auto;
    background: #000000;
    padding: 40px;
    border-radius: 16px;
}

.blc_res_val {
    color: #8c8c8c;
}

.blc_res.no_marge {
    padding-bottom: 0px;
    border-bottom: 0px;
}
.blc_title.title_weight{
    display: block;
    text-align: center;
    margin-top: 6px;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -0.6px;
    font-weight: 800;
}

.blc_title.title_weight span{

    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #327ee9, #ee22e7);
    -webkit-background-clip: text;
    background-clip: text;
}


.col_m2{
    display: flex;
}


@media all and (max-width:700px) {
    .m__calculator {
    }

    .m__calculator .m__output .m__row{
            display: block;
    }

    .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{
    border-width: 2px;
    border-style: solid;
    border-image: initial;
    border-radius: 12px;
    border-color: rgb(186 32 170);
    background: rgb(35 35 35);
    overflow: hidden;
    padding: 20px;
    box-shadow: 0px 10px 16px -3px rgb(0 0 0 / 15%);
}
.m_foot{

}
.blc_res.m_head {
    font-size: 22px;
    width: 50%;
    text-align: center;
}
.mm_btn_explain{
    font-size: 14px;
    text-overflow: ellipsis;
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: bold;
    line-height: 24px;
    text-size-adjust: none;
    white-space: nowrap;
    overflow: initial;
    margin: 0 0 5px 0;
    color: #374151;
}
.mm_save{
color: rgb(201 201 201);
    font-family: Inter, sans-serif;
    font-style: normal;
    line-height: 24px;
    text-align: center;
    overflow: initial;
    font-size: 14px;
    font-weight: 600;
}






/*-----For Switch Radio Buttons----*/
.radio-tile-group {
    display: flex;
    gap: 6px;
}
.radio-tile-group .input-container {
    position: relative;
    min-width: 60px;
    flex: 30%;
}
.radio-tile-group .input-container .radio-button {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}
.radio-tile-group .input-container .radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform 300ms ease;
    padding: 10px 6px;
    border-radius: 6px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px !important;
    line-height: 20px;
    background: rgb(41 41 41);
    color: rgb(208 208 208);
}
.radio-tile-group .input-container .radio-tile-label {
    text-align: center;
    font-weight: 700;
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile {
background-image: linear-gradient(90deg, #1928d4, #c70eb4);
    color: white;
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile .radio-tile-label {
  color: white;
}








.mm_btn_primary {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: Inter, sans-serif;
    cursor: pointer;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 38px;
    text-align: center;
    border-width: 0;
    outline: none;
    background: #205cff;
    color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px, rgba(0, 0, 0, 0.05) 0px 1px 2px;
    background-image: linear-gradient(90deg, #1928d4, #c70eb4);
    border-radius: 7px;
    transition: all .2s cubic-bezier(.645, .045, .355, 1);
    max-width: 250px;
    margin: auto;
    padding: 4px;
}

.mm_btn_primary svg{
    width: 20px;
}

.mm_btn_primary:hover {
    background-image: linear-gradient(99deg, #0d1ab7, #c70eb4);
    font-size: 16px;
}















.switch{
background: #3b3b3b;
    padding: 4px 5px;
    border-radius: 8px;
    user-select: none;
    cursor: pointer;
    width: auto;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.switch_3_ways_v2{
    font-size: 14px;
    height: 36px;
    line-height: 36px;
    border-radius: 6px;
    background: #3b3b3b;
    color: #a5a5a5;
    position: relative;
    display: inline-flex;
    flex-direction: row;
    width: 100%;
}

.switch2.Weekly,
.switch2.Fortnightly,
.switch2.Monthly{
    position: relative;
    display: block;
    -webkit-transition: 100ms ease-out;
    -moz-transition: 100ms ease-out;
    transition: 100ms ease-out;
    width: 33.333%;
    text-align: center;
    font-weight: 600;
}
.selector{
    text-align: center;
    position: absolute;
    font-size: 14px;
    font-weight: 600;
    width: 0;
    box-sizing: border-box;
    -webkit-transition: 100ms ease-out;
    -moz-transition: 100ms ease-out;
    transition: 100ms ease-out;
    border-radius: 6px;
    color: #000000;
    height: 36px
}

.div_block_2{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3b3b3b;
    padding: 25px 20px;
    border-radius: 16px;
}


.what_included_block{
display: flex;
    padding: 0 16px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 18px;
    align-self: stretch;
    margin: 20px 0 30px;
}
.what_included {
display: flex;
    align-items: flex-start;
    gap: 10%;
    width: 100%;
}
.what_included p {
    display: flex;
    gap: 14px;
    padding: 0;
    margin: 0;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.what_included svg {
    vertical-align: middle;
}
.what_included_block h6{
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
    color: white;
}



@media all and (max-width:700px) {
    .m__calculator {
        font-size: 16px;
    }
    .m__section {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        margin: 15px;
        padding: 20px 10px;
    }
    .radio-tile-group {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
    }
    .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;
    }
    .m__result {
        padding: 0;
    }

    .switch {
        margin: 20px 10px !important;
    }
    .div_block_2 {
        margin: 10px;
        flex-direction: column;
        gap: 15px;
    }
    .blc_res.m_head {
        width: 100%;
    }
    .what_included_block {
        padding: 0 20px;
    }
    .what_included {
        gap: 8px;
    }
    .what_included p {
        gap: 4px;
        font-size: 12px;
        line-height: 25px;
    }
    .m_foot {
        margin: 20px 20px 40px;
    }
}
