table {
    /*border: 1px solid #839396;*/
    width: 100%;
    margin:0;
    padding:0;
    border-collapse: collapse;
    border-spacing: 0;
	color:#333;
  }

  table tr {
    /*border: 1px solid #839396;*/
    padding: 5px;
  }
  
tr:nth-child(even) {background: #ddd}
tr:nth-child(odd) {background: #fff}

  table th, table td {
    padding: 5px;
    text-align: center;
	line-height: 1.25em;
  }

  table th {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
	background-color: #839396;
	color:#fff;
  }

  @media screen and (max-width: 600px) {

    table {
      border: 0;
    }

    table thead {
      display: none;
    }

    table tr {
      margin-bottom: 10px;
      display: block;
      border-bottom: 1px solid #839396;
    }

    table td {
      display: block;
      text-align: right;
      font-size: 13px;
      border-bottom: 1px dotted #839396;
    }

    table td:last-child {
      border-bottom: 0;
    }

    table td:before {
      content: attr(data-label);
      float: left;
      text-transform: uppercase;
      font-weight: bold;
    }
  }