* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
  }
  
  .container {
    min-width: 320px;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
  }

  .table2 {
    border-collapse: collapse;
    width: 100%;
    background-color: #a0a4a8
   
  }
  
  .table .td, .table .th {
    padding: 6px;
    border: 1px solid #cbbdbd;
  }

  .table .td0, .table .th {
    padding: 1px;
    border: 1px solid #cbbdbd;
  }
  
  .table2 .td2, .table th {
    padding: 2px;
    border: 0px solid #cbbdbd;
  }

  .table tr:nth-child(even){
      background-color: #f0f4c3
      }
  
  
  @media (max-width: 720px) {
  
    .container .table thead {
      display: none;
    }

  
    .container .table .td {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
    }


  
    .container .table .td::before {
      content: attr(data-label);
      font-weight: bold;

    }

    .container .table2 .td2 {

      justify-content: space-between;
      font-size: 14px;
      vertical-align: middle;
      text-align: center;
    }
    .container .table2 .td2::before {
        content: attr(data-label);
        font-weight: bold;
     
        background-color: #78a198
      }
  
  }