  .rextable {
    margin: 0 0 40px 0;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: table;
  }
  @media screen and (max-width: 580px) {
    .rextable {
      display: block;
    }
  }
  
  .rexrow {
    display: table-row;
    background: #f6f6f6;
  }
  .rexrow:nth-of-type(odd) {
    background: #e9e9e9;
  }
  .rexrow.header {
    font-weight: 900;
    color: #ffffff;
    background: #ea6153;
  }
  .rexrow.green {
    background: #00c784;
  }
  .rexrow.blue {
    background: #2980b9;
  }
  @media screen and (max-width: 580px) {
    .rexrow {
      padding: 14px 0 7px;
      display: block;
    }
    .rexrow.header {
      padding: 0;
      height: 6px;
    }
    .rexrow.header .cell {
      display: none;
    }
    .rexrow .cell {
      margin-bottom: 10px;
    }
    .rexrow .cell:before {
      margin-bottom: 3px;
      content: attr(data-title);
      min-width: 98px;
      font-size: 10px;
      line-height: 10px;
      font-weight: bold;
      text-transform: uppercase;
      color: #969696;
      display: block;
    }
  }
  
  .rexcell {
    padding: 6px 12px;
    display: table-cell;
  }