.list {
  position: relative;
  top: 80px;
  display: table-cell;
  vertical-align: top;
  z-index: 10;
  overflow: auto;
  height: calc(100vh - 80px);
}

.list table {
  width: 100%;
  /*min-width: 300px;*/
  table-layout: fixed;
  border-collapse: collapse;
}

.list table th#name {
  width: 40%;
}

.list table th#size {
  width: 15%;
}

.list table th#date {
  width: 15%;
}

.list table th#owner {
  width: 10%;
}

.list table th#progress {
  width: 50%;
}

.list table th#down {
  width: 10%;
}

.list table th#up {
  width: 10%;
}

.list table td#name .download {
  font-size: 15px;
}
/* remove some columns when screen is to little */

@media only screen and (max-width: 470px) {
  .list table th#down, .list table th#up, .list table th#owner {
    display: none;
  }

  .list table th#name {
    width: 80%;
  }
}

.list th {
  height: 40px;
  text-align: left;
}

.list tr {
  height: 35px;
}

.list td, .list th {
  display: table-cell;
  overflow: hidden;
  padding-left: 10px;
}

.scrollTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  font-size: 25px;
}
