
.table-wrapper {
  /* max-width: 300px; */
  width: 95%;
  margin: 0 auto 0;
  /* max-height: 500px; */
  /* overflow-y: scroll; */
  position: relative;
  transition: all .2s ease-out;
}
@media (min-width: 768px) {
  .table-wrapper {
    background: white;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  }
}

.card-list-table {
  table-layout: fixed;
  background: transparent;
  margin-bottom: 0;
  width: 100%;
}
.card-list-table thead {
  display: none;
}
.card-list-table tbody tr {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  background: #fff;
  border-bottom: 1px solid #dfdfdf;
  cursor: pointer;
  display: block;
  padding: 15px 10px;
  margin: 0 0 10px 0;
}
.card-list-table tbody tr td {
  border: 0;
  display: block;
  padding: 10px 10px 20px 40%;
  position: relative;
  font-size: small;
}
.card-list-table tbody tr td:first-of-type::after {
  visibility: hidden;
}
.card-list-table tbody tr td:after {
  content: '';
  width: calc(100% - 30px);
  display: block;
  margin: 0 auto;
  height: 1px; 
  position: absolute;
  background: #09418647;
  left: 0;
  right: 0;
  top: -6px;
}
/* .card-list-table tbody tr td:before { */
  /* color: rgba(0, 0, 0, 0.35); */
  /* text-transform: uppercase; */
  /* font-size: .85em; */
  /* content: attr(data-title); */
  /* display: table-cell; */
  /* font-weight: 500; */
  /* height: 100%; */
  /* /* left: 15px; */ */
  /* margin: auto; */
  /* position: absolute; */
  /* vertical-align: middle; */
  /* white-space: pre-wrap; */
  /* width: 40%; */
  /* text-align: left; */
/* } */
.card-list-table thead th {
  text-transform: uppercase;
  font-size: .85em;
  color: rgba(0, 0, 0, 0.35);
  letter-spacing: .5pt;
}
.table-wrapper .js-stickyWidget-toggle , .table-wrapper  .js-stickyWidget-placeholder{
	display:none;
}