table.mobile {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
  }

  table.mobile tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
  }
  
  table.mobile th,
  table.mobile td {
    padding: .625em;
    text-align: center;
  }
  
  table.mobile th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  /* ----------------MOBILE VIEW-------------------- */
  @media screen and (max-width: 600px) {
    table {
      border: 0;
    }
    
    table.mobile thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    table.mobile tr {
      border-bottom: 3px solid #ddd;
      display: block;
      /* margin-bottom: .625em; */
      border-bottom-color: #DE541E;
    }
    
    table.mobile td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: .8em;
      text-align: right;
    }
    
    table.mobile td::before {
      content: "\00a0" attr(data-label) "\00a0";
      float: left;
      font-weight: bold;
      border-bottom: 1px solid grey;
      border-top: 1px solid grey;
      border-radius: 0.25em;
    }
    
    table.mobile td:last-child {
      border-bottom: 0;
    }
  }