.rwd-table {
  margin: 1em 0;
  min-width: 300px;
  width: 100%;
}
.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.rwd-table th {
  display: none;
}
.rwd-table td {
  display: block;
}
.rwd-table td:first-child {
  padding-top: .5em;
}
.rwd-table td:last-child {
  padding-bottom: .5em;
}
.rwd-table td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  /* width: 9em; */
  display: inline-block;
}
@media (min-width: 480px) {
  .rwd-table td:before {
    display: none;
  }
}

.rwd-table th, .rwd-table td {
  text-align: left;
}
@media (max-width: 480px) {
  .rwd-table td {
      text-align: right;
  }
  .rwd-table td:before {
    float: left;
    clear: both;
  }
}
@media (min-width: 480px) {
  .rwd-table th, .rwd-table td {
    display: table-cell;
    padding: .25em .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;
    text-align: right;
  }
}
.rwd-table td:last-child {
  font-weight: bold;
    font-size: 130%;
    color: #9fea3b;
}


.rwd-table {
  background: #1d427c;
  color: #fff;
  border-radius: .4em;
  overflow: hidden;
}
.rwd-table tr {
  border-color: #46637f;
}
.rwd-table tr:first-child {
  border-color: transparent;
}
.rwd-table th, .rwd-table td {
  margin: .5em 1em;
}
@media (min-width: 480px) {
  .rwd-table th, .rwd-table td {
    padding: 1em !important;
  }
}
.rwd-table th {
    color: #1d427c;
    background: #9fea3b;
}




.table {
    width: 100%;
    max-width: 100%;
}
.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #eaf4ff;
}
.table>tbody>tr>td,
.table>tbody>tr>th {
  padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #b9cada;
}
.table>tbody>tr>th {
  text-align:left;
}
.table>tbody>tr>td {
  text-align: right;
}