$breakpoint-alpha: 480px;

.rwd-table {
  margin: 10px 0;
  background-color:#ecebeb;
  border-radius: .4em;
  overflow: hidden;
  width:100%;
}
.rwd-table tr {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #dadada;
}
.rwd-table tr:first-child {
  border:0;
}
.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 th, .rwd-table td {
  text-align: left;
  margin: .5em 1em;
}
.rwd-table th, .rwd-table td:before {
  color: #fff;
  background-color:#F16000;
}
.rwd-table td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 6.5em;
  display: inline-block;
  margin-right:5px;  
}
.emptyLabels td:before {
  content: attr(data-th) "";
  width: 0em;
  display: inline-block;
  margin-right:0px;  
}
@media only screen and (min-width:1px) and (max-width:767px) {
  .rwd-table {
    
  }
}
@media only screen and (min-width:768px) {
  .rwd-table {
    
  }
  .rwd-table td:before {
    display: none;
  }
  .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 th, .rwd-table td {
    padding: 1em !important;
  }  
}
