JSFiddle - React, Tailwind, and code Playground

by mtenschert

CSS

div.payment-option.first div.example div.clearfix:nth-child(5) span.left.clearfix, 
div.payment-option.first div.example div.clearfix:nth-child(5) span.right, 
div.payment-option.second div.example div.clearfix:nth-child(5) span.left.clearfix, 
div.payment-option.second div.example div.clearfix:nth-child(5) span.right.ng-binding {
  display:none;
}

JavaScript

$("div.payment-option.first div.example div.clearfix:nth-child(5) span.left.clearfix").remove();
        $("div.payment-option.first div.example div.clearfix:nth-child(5) span.right").remove();
        // hide downpayment online info
        $("div.payment-option.second div.example div.clearfix:nth-child(5) span.left.clearfix").remove();
        $("div.payment-option.second div.example div.clearfix:nth-child(5) span.right.ng-binding").remove();