.rwd-table {
 /* margin: 1em 0;*/
 width: 100%;
}

.rwd-table th {
  display: none;
}
.rwd-table .title{text-align:center}
.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: 7.5em;
  display: inline-block;
}
@media (min-width: 480px) {
  .rwd-table td:before {
    display: none;
  }
}
.rwd-table th, .rwd-table td {
  text-align: left;
}

@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;
  }
}

.rwd-table {
  border-radius: .4em;
  border-collapse:separate;
  overflow: hidden; border:2px solid rgba(0, 132, 255,.9);
}

.rwd-table tr:nth-child(odd) {
	background-color:#fff;
 }
.rwd-table tr:nth-child(even) {
	background-color:#eee;
 }
.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, .rwd-table td:before {
  color:rgba(0, 132, 255,.9)
}

