html #masterContentArea .tables-responsive table:not(.Grid) .PanelField,
html #masterContentArea .tables-responsive table:not(.Grid) .PanelField label,
html #masterContentArea .tables-responsive table:not(.Grid) .PanelField .Label,

html #masterContentArea .tables-responsive table:not(.Grid) .PanelFieldValue, 
html #masterContentArea .tables-responsive table:not(.Grid) .PanelFieldLabel,
html #masterContentArea .tables-responsive table:not(.Grid) .PanelFieldValue, 
html #masterContentArea .tables-responsive table:not(.Grid) .PanelFieldLabel,
html #masterContentArea .tables-responsive table:not(.Grid) .TwoColumns,
html #masterContentArea .tables-responsive table:not(.Grid) .ThreeColumns,

html #masterContentArea .tables-responsive table:not(.Grid) .CheckBoxList,
html #masterContentArea .tables-responsive table:not(.Grid) select, 
html #masterContentArea .tables-responsive table:not(.Grid) textarea, 
html #masterContentArea .tables-responsive table:not(.Grid) input[type="text"], 
html #masterContentArea .tables-responsive table:not(.Grid) input[type="password"], 
html #masterContentArea .tables-responsive table:not(.Grid) input[type="datetime"], 
html #masterContentArea .tables-responsive table:not(.Grid) input[type="datetime-local"], 
html #masterContentArea .tables-responsive table:not(.Grid) input[type="date"], 
html #masterContentArea .tables-responsive table:not(.Grid) input[type="month"], 
html #masterContentArea .tables-responsive table:not(.Grid) input[type="time"], 
html #masterContentArea .tables-responsive table:not(.Grid) input[type="week"], 
html #masterContentArea .tables-responsive table:not(.Grid) input[type="number"], 
html #masterContentArea .tables-responsive table:not(.Grid) input[type="email"], 
html #masterContentArea .tables-responsive table:not(.Grid) input[type="url"], 
html #masterContentArea .tables-responsive table:not(.Grid) input[type="search"], 
html #masterContentArea .tables-responsive table:not(.Grid) input[type="tel"], 
html #masterContentArea .tables-responsive table:not(.Grid) input[type="color"], 
html #masterContentArea .tables-responsive table:not(.Grid) .uneditable-input {
    float: left;
    display: block !important;
    width: 100% !important;
}
html #masterContentArea .tables-responsive table:not(.Grid) .CheckBoxList label,
html #masterContentArea .tables-responsive table:not(.Grid) .CheckBoxList input[type="checkbox"]{
    float: left;
    display: inline !important;
    width: auto !important;
}
html #masterContentArea .tables-responsive table:not(.Grid) .PanelField label[style="display:inline;"]{
    float: right;
    display: inline-block !important;
    width: 90% !important;
}
html #masterContentArea .tables-responsive table:not(.Grid) .PanelField label[style="display:inline;"] + .PanelFieldValue {
    float: left;
    display: inline-block !important;
    width: auto !important;
}

.tables-responsive table:not(.Grid) tr {
    grid-gap: 2rem 2rem;
    grid-template-columns: 1fr;
    padding: 0;
    margin: 0;
}
.tables-responsive table:not(.Grid) tr .RadTabStrip .rtsLevel1 .rtsTxt, 
.tables-responsive table:not(.Grid) tr .RadTabStripVertical .rtsLevel1 .rtsTxt {
    white-space: normal;
    line-height: 1.4em;
    padding: 5px;
}
@media(min-width:600px) {
    .tables-responsive table:not(.Grid) tr {
        display: grid;
    }
    .tables-responsive table:not(.Grid) tr,
    .tables-responsive table:not(.Grid) tr:has(.ThreeColumns) {
        grid-template-columns: 1fr 1fr;
    }
    .tables-responsive table:not(.Grid) tr > td,
    .tables-responsive table:not(.Grid) tr:has(.ThreeColumns) > td {
        max-width: 400px;
    }
    
}
@media(min-width:900px) {
    .tables-responsive table:not(.Grid) tr:has(.ThreeColumns) {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .tables-responsive table:not(.Grid) tr:has(.ThreeColumns) > td {
        max-width: 300px;
    }
}

@media(min-width: 767px) {
    .tables-responsive table:not(.Grid) tr td.TwoColumns .PanelField label,
    .tables-responsive table:not(.Grid) tr td.TwoColumns .PanelField .Label {
        display: inline-block;
        width: 11.5em;
    }
}