table{
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
  }

  table th:nth-child(1){
    width:15%;
}  
  table th:nth-child(2){
      width:15%;
  }
  table th:nth-child(3){
      width:70%;
  }
  table th{
    text-align: center;
    color:white;
    background: linear-gradient(#829ebc,#225588);
    border-left: 1px solid #3c6690;
    border-top: 1px solid #3c6690;
    border-bottom: 1px solid #3c6690;
    box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
    width: 25%;
    padding: 10px 0;
  }
  table tr{
    border-bottom: solid 1px #eee;
    cursor: pointer;
  }
  
  table tr:hover{
    background-color: #d4f0fd;
  }
  
  table th,table td{
    text-align: center;
    width: 25%;
    padding: 15px 0;
  }
  
  table td.icon{
    background-size: 35px;
    background-position: left 5px center;
    background-repeat: no-repeat;
    padding-left: 30px;
  }
  
  table td.icon.information{
    background-image: url(../common/images/information.png)
  }
  
  table td.icon.upload{
    background-image: url(../common/images/upload.png)
  }
  
  table td.icon.document{
    background-image: url(../common/images/document.png)
  }
  
/* table tbody{
  height:600px;
  display: block;
  overflow-y:scroll;
  overflow-x:hidden;
} */