.table {
    background: #fff;
    border: 1px solid #ccc
}
table label{
    font-weight: 100;
    font-size: 20px !important;
}
.table>thead>tr>th {
    padding: 20px;
    text-align: left;
    vertical-align: middle;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    background: #fff !important;
    border: 1px solid #ccc
}
.table>thead>tr>th>a {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #00709e
}
.table>thead>tr>td {
    background: #fff !important;
    border: 1px solid #ccc
}
.table tbody td a {
    color: #00709e;
    text-decoration: underline
}
.table>tbody>tr>td {
    background: #fff !important;
    border: none;
    padding: 8px 20px
}
.table>tbody>tr>th {
    background: #fff !important;
    border: 1px solid #ccc
}
.table>tfoot>tr>td {
    background: #fff !important;
    border: 1px solid #ccc
}
.table>tfoot>tr>th {
    background: #fff !important;
    border: 1px solid #ccc
}
.table td {
    font-size: 18px;
    font-weight: 400;
    color: #333
}
.table tr {
    font-size: 18px;
    font-weight: 400;
    color: #333
}
.table-striped>tbody td {
    border: 1px solid #ccc !important
}
.table-striped>tbody>tr:nth-child(2n+1)>td {
    background-color: #fff
}
.table-striped>tbody>tr:nth-child(2n+1)>th {
    background-color: #fff
}
.panel-group .panel-collapse .panel-body {
    padding: 0
}
.panel-group .view-toolbar .pull-right {
    width: 100%
}
.panel-group .view-toolber .pull-left .pull-left {
    float: right !important
}
@media (max-width: 767px) {
    .table-fluid {
        border:none !important
    }
    .table-fluid tr {
        margin-bottom: 15px;
        border-top: 1px solid #ccc
    }
}
table[data-name*="review-table"],.review-table {
    width: 100%
}
table[data-name*="review-table"] .validators,.review-table .validators {
    display: none
}
table[data-name*="review-table"] tr td,.review-table tr td {
    padding: 15px 5px !important;
    border-bottom: 1px solid #333
}
table[data-name*="review-table"] tr td .info,.review-table tr td .info {
    float: left;
    width: 60%;
    font-size: 18px
}
@media (max-width: 767px) {
    table[data-name*="review-table"] tr td .info,.review-table tr td .info {
        width:100%;
        float: none
    }
}
table[data-name*="review-table"] tr td .info label,.review-table tr td .info label {
    font-weight: 400;
    margin-bottom: 0
}
table[data-name*="review-table"] tr td .control,.review-table tr td .control {
    /* float: right;
    width: 40%; */
    clear: none !important
}
table[data-name*="missed-collection-review-table"] tr td .control,.review-table tr td .control {
    /* float: right;
    width: 25%; */
    clear: none !important
}
table[data-name="missed-collection-review-table"] .picklist-cell {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

table[data-name="missed-collection-review-table"] .table-info {
  flex: 0 0 25%;
}

table[data-name="missed-collection-review-table"] .control {
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 767px) {
    table[data-name*="review-table"] tr td .control,.review-table tr td .control {
        width:100%;
        float: none
    }
}
table[data-name*="review-table"] tr td .control select,.review-table tr td .control select,table[data-name*="review-table"] tr td .control input[type="text"],.review-table tr td .control input[type="text"],table[data-name*="review-table"] tr td .control textarea,.review-table tr td .control textarea,table[data-name*="review-table"] tr td .control input[type="email"] {
    font-size: 20px;
    height: auto;
    padding: 0
}
table[data-name*="review-table-wide"] tr td .info,.review-table tr td .info {
    float: left;
    width: 55%;
    font-size: 18px
}
table[data-name*="review-table-wide"] tr td .control,.review-table tr td .control {
    float: right;
    width: 45%;
    clear: none !important
}
table[data-name*="review-table-wide"] a.text-primary {
    display: none !important;
}
table[data-name*="review-table-wide"] input[type="email"] {
    text-decoration: none !important;
    display: block !important;
}
table[data-name*="review-table-wide"] tr td .control select {
    white-space: pre-line;
}
.table-transparent {
    background: transparent !important;
    border-color: #333 !important
}
.table-transparent.table th,.table-transparent.table td {
    background: transparent !important;
    border-color: #333 !important;
    padding: 15px !important
}
.table-transparent td.center {
    text-align: center
}
.table-transparent.table th {
    font-size: .9rem;
    text-align: center;
    font-weight: 700
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

.review-field {
  margin: 0;
  float: right;
}

table[data-name="review-table"] .field-label {
  font-weight: bold;
}

/* Only affect this review table */
table[data-name="review-table"] td.cell.clearfix {
  display: grid;
  grid-template-columns: max-content 1fr; /* label | content */
  column-gap: 0.75rem;
  align-items: center;
}

/* Kill any float/width the theme may apply */
table[data-name="review-table"] td.cell.clearfix .table-info,
table[data-name="review-table"] td.cell.clearfix .control {
  float: none !important;
  width: auto !important;
}

/* Let long text wrap properly in the right column */
table[data-name="review-table"] td.cell.clearfix .control {
  min-width: 0;                 /* crucial so 1fr can actually shrink in grid */
  white-space: normal;
  overflow-wrap: anywhere;      /* prefer over word-break for nicer wrapping */
  word-break: normal;
}