.tbl-r {
    border-collapse: collapse !important;
    table-layout: fixed;
    width: 100%;
    background: #fff;
    border: 1px solid;
}
.tbl-r th,
.tbl-r td {
    font-size: 14px;
    text-align:center !important;
    background: #fff !important;
    border: none !important;
    padding: 8px;
    vertical-align: middle;
    box-sizing: border-box;
}

.tbl-r thead th {
    color: #fff;
    background: #3f3f3f !important;
}
th.th-l{
    text-align: left !important;
}
.tbl-r thead th:first-child {
    width: 50%;
    text-align: left !important;
}
.tbl-r tbody td:last-child {
    text-align: right;
}

@media screen and (max-width: 480px) {
.tbl-r {
    width: 90%;
    text-align: center;
    margin: 0 auto;
}
  .tbl-r thead {
    display:none;
  }
  .tbl-r tr {
    background-color: unset;
  }
  th.th-l{
    text-align: center !important;
  }
  .tbl-r th, .ex_tbl-r td {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ccc;
  }
  .tbl-r tbody th{
    background: #3f3f3f !important;
    color:#fff;
    text-align: center;
  }
  .tbl-r tbody tr td:not(:last-child) {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-bottom: 1px dotted #ccc !important;
  }
  .tbl-r tbody tr td:not(:last-child)::before{
    content: attr(data-label);
    display: inline-block;
    margin-right: 10px;
  }
  .tbl-r tbody td:last-child::before{
    content: attr(data-label);
    display: inline-block;
    margin-right: 10px;
  }
  .tbl-r tbody td:last-child{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}