/* MA Table */
.jltma-table th {
  color: #fff;
  font-weight: bold;
}

.jltma-table td,
.jltma-table th {
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 18px;
}

table tbody > tr:nth-child(odd) > td,
table tbody > tr:nth-child(odd) > th {
  background-color: transparent;
}

@media only screen and (max-device-width: 768px) {
  .jltma-table:not(.not-responsive) {
    width: 100%;
  }
  .jltma-table:not(.not-responsive),
  .jltma-table:not(.not-responsive) thead,
  .jltma-table:not(.not-responsive) tbody,
  .jltma-table:not(.not-responsive) th,
  .jltma-table:not(.not-responsive) td,
  .jltma-table:not(.not-responsive) tr {
    display: block;
  }
  .jltma-table:not(.not-responsive) thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .jltma-table:not(.not-responsive) tr {
    border: 1px solid #ccc;
  }
  .jltma-table:not(.not-responsive) td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }
  .jltma-table:not(.not-responsive) td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    content: attr(data-column);
    color: #000;
    font-weight: bold;
  }
}
/* MA Table */