.block.block-file-list {
  padding: 50px 0;
  background: #f8f8f8;
}

.block.block-file-list .block-title {
  margin-top: 0;
}

.file-list .file-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 1px #eee;
  padding: 15px 30px;
  background-color: #fff;
  font-size: 18px;
  line-height: 30px;
}

.file-list .file-item:last-child {
  border-bottom: none;
}

.file-list .file-item::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 0 0 10px;
  background: transparent url(../../images/external-link-symbol.svg) no-repeat center/20px;
  opacity: 0;
}

.file-list .file-item:hover::after {
  opacity: 1;
}

.file-ext {
  display: block;
  height: 30px;
  min-width: 70px;
  margin: 0 20px 0 0;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 700;
  background: #6d6d6d;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 3px;
  line-height: 30px;
}

.file-ext.pdf {
  background: #c72323;
}

.file-ext.docx {
  background: #1f3cb0;
}

.file-ext.xlsx {
  background: #52a40c;
}

.file-ext.jpg,
.file-ext.jpeg,
.file-ext.png {
  background: #269bff;
}

@media(max-width: 768px) {
  .file-list .file-item {
    padding: 10px;
    font-size: 16px;
    line-height: 24px;
  }

  .file-list .file-item::after {
    display: none;
  }

  .file-ext {
    display: block;
    min-width: 65px;
    margin: 0 10px 0 0;
    padding: 0 10px;
  }
}