.rwd-table {
  margin: auto;
  min-width: 300px;
  max-width: 100%;
  border-collapse: collapse;
  text-align: justify;
}

.rwd-table tr:first-child {
  border-top: none;
  background: #1A1A27;
  color: #fff;
}

.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #f5f9fc;
}

.rwd-table tr:nth-child(odd):not(:first-child) {
  background-color: #efefef;
}

.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:first-child {
  margin-top: 0.5em;
}

.rwd-table td:last-child {
  margin-bottom: 0.5em;
}

.rwd-table .td-table:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 120px;
  display: inline-block;
  color: #000;
}

.rwd-table {
  color: #333;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  overflow: hidden;
}

.rwd-table tr {
  border-color: #bfbfbf;
}

.rwd-table th,
.rwd-table td {
  padding: 0.5em 1em;
}

.rwd-table tr:first-child,
.rwd-table tr:last-child {
  border: none;
}
@media screen and (max-width: 991.99px) {
  .rwd-table tr:nth-child(2) {
    border-top: none;
  }
  .btn-text-table {
    display: inline;
  }
}
@media screen and (min-width: 991.98px) {
  .rwd-table tr:hover:not(:first-child) {
    background-color: #cdcdcd;
  }
  .rwd-table .td-table:before {
    display: none;
  }
  .rwd-table th,
  .rwd-table td {
    display: table-cell;
    padding: 0.25em 0.5em;
  }
  .rwd-table th:first-child,
  .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child,
  .rwd-table td:last-child {
    padding-right: 0;
  }
  .rwd-table th,
  .rwd-table td {
    padding: 1em !important;
  }
  .btn-text-table {
    display: none;
  }
  .btn-icon-table {
    background-color: transparent !important;
    margin: 0px;
    padding: 0px;
    border: 0px;
    width: auto;
  }
  .btn-icon-table:hover i,
  .btn-icon-table i:hover {
    color: #1a1a27 !important;
  }
  .icon-table:hover {
    color: #1a1a27 !important;
  }
  table, th, td  {
  border: 1px solid;
  overflow-x:auto;
}
}

@-webkit-keyframes leftRight {
  0% {
    -webkit-transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-10px);
  }
  75% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes leftRight {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}