/* Hide old deposit tiles/cards on Recharge page (safe, non-destructive)
   We target by visible texts using CSS is hard; so we hide the whole channel area container.
   If too much hides, we'll narrow it down in next step.
*/

/* Try to hide the "Select channel" block */
.Recharge__content .boxStyle {
  /* keep layout but hide select-channel cards area */
}

/* hide blocks that contain old channel cards (most builds use this class) */
.Recharge__content .boxStyle .toActive,
.Recharge__content .boxStyle .toActive + div {
  display: none !important;
}

/* fallback: hide any element that contains the channel list area */
.Recharge__content .boxStyle {
  /* comment this line first; enable only if needed */
  /* display:none !important; */
  /* Strong hide: hide the entire "Select channel" card list area */
.Recharge__content .boxStyle {
  display: none !important;
}
