.file-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.8rem;
  transition: all 0.3s;
  background-color: rgba(88, 85, 182, 0.06);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  width: 186px;
  @media (max-width: 480px) {
    width: 100%;
  }
  .file-header {
  }

  .file-preview {
    .file-preview-wrapper {
      background-color: #fff;
      border-radius: 0.5rem;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      display: flex;
      width: 100%;
      height: 50px;
      margin: 0.5rem 0;
    }
  }

  .file-footer {
    img {
      width: 16px;
      height: 16px;
    }
    span {
      font-size: 10px;
      color: #909090;
    }
  }
}
