body {
   
    line-height: 30px;
    
    color: #fcf8f8;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    background: #0c0c0c;
  }

  .wrapper {
    margin: 0 auto;
    padding: 40px;
    max-width: 100%;
  }
  
  .table {
    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: 100%) {
    .table {
      display: block;
    }
  }
  
  .row {
    display: table-row;
    background: #070707;
  }
  .row:nth-of-type(odd) {
    background: #080808;
  }
  .row.header {
    font-weight: 900;
    color: #ffffff;
    background: #113c50;
  }
  .row.green {
    background: #113c50;
  }
  .row.blue {
    background: #c7b725;
  }

  .row.red {
    background: #ee979f;
  }
  @media screen and (max-width: 100%) {
    .row {
      padding: 14px 0 7px;
      display: block;
    }
    .row.header {
      padding: 0;
      height: 6px;
    }
    .row.header .cell {
      display: none;
    }
    .row .cell {
      margin-bottom: 10px;
    }
    .row .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;
    }
  }
  
  .cell {
    padding: 6px 12px;
    display: table-cell;
  }
  @media screen and (max-width: 100%) {
    .cell {
      padding: 2px 16px;
      display: block;
    }
  }