/* Recharge Board------------START */

.badge:empty {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    min-width: 0;
    min-height: auto;
    padding: 0;
    border-radius: 100rem;
    vertical-align: baseline;
}

.rc-tab-list {
    display: flex;
    list-style: none;
    background-color: var(--color-primary);
    color: var(--color-text);
}

.rc-tab-list-items {
    color: var(--color-white);
    text-decoration: none;
    margin-left: 1rem;
    padding: 3px 10px 3px 10px;
    border-radius: 1rem 1rem 0 0;
    cursor: pointer;
}

.rc-tab-list-items:hover {
    border: 1px solid var(--color-gray);
    border-bottom: none;
    -webkit-box-shadow: inset var(--i-shadow-small);
    -moz-box-shadow: inset var(--i-shadow-small);
    box-shadow: inset var(--i-shadow-small);

}

#rc-mobile-tab:checked+.rc-tab-list-items,
#rc-billpay-tab:checked+.rc-tab-list-items,
#rc-dth-tab:checked+.rc-tab-list-items {
    background-color: var(--color-bg);
    color: var(--color-primary);
    border: 1px solid var(--color-gray);
    border-bottom: none;
    -webkit-box-shadow: inset var(--i-shadow-small);
    -moz-box-shadow: inset var(--i-shadow-small);
    box-shadow: inset var(--i-shadow-small);
}

.rc-sub-tab {
    color: var(--color-primary);
    cursor: pointer;
}


.rc-sub-tab:hover {
    border-bottom: 4px solid var(--color-primary);
    transition: all ease-out .2s;
}

.rc_mobile_form,
.rc_dth_form,
.rc_billpay_form {
    display: none;
}

.sub_tab_radio:checked+.rc-sub-tab {
    color: var(--color-text);
    border-bottom: 4px solid var(--color-primary);
}




#rc_billpay_googleplay_subtab:checked~.rc_billpay_form_container>.rc_billpay_form#rc_googleplay_form,
#rc_billpay_fasttag_subtab:checked~.rc_billpay_form_container>.rc_billpay_form#rc_fasttag_form,
#rc_billpay_insurance_subtab:checked~.rc_billpay_form_container>.rc_billpay_form#rc_insurance_form,
#rc_billpay_water_subtab:checked~.rc_billpay_form_container>.rc_billpay_form#rc_water_form,
#rc_billpay_electricity_subtab:checked~.rc_billpay_form_container>.rc_billpay_form#rc_electricity_form,
#rc_billpay_gas_subtab:checked~.rc_billpay_form_container>.rc_billpay_form#rc_gas_form,
#rc_billpay_landline_subtab:checked~.rc_billpay_form_container>.rc_billpay_form#rc_landline_form,
#rc_dth_sub_tab:checked~.rc_dth_form_container>.rc_dth_form#rc_dth_form,
#rc_mobile_prepaid_tab:checked~.rc_mobile_form_container>.rc_mobile_form#rc_prepaid_form,
#rc-mobile-postpaid-tab:checked~.rc_mobile_form_container>.rc_mobile_form#rc_postpaid_form {
    display: block;
}


#rc-prepaid-sub-tab-container,
#rc-dth-sub-tab-container,
#rc-billpay-sub-tab-container {
    display: none;
}

#rc-prepaid-sub-tab-container.active,
#rc-dth-sub-tab-container.active,
#rc-billpay-sub-tab-container.active {
    display: block;
}

/* Recharge Board------------END */