.download {
  max-width: 940px;
  .filelink-item {
    display: block;
    margin-top: 0;
    border-top: 1px solid $black;
    &:last-child {
      border-bottom: 1px solid $black;
    }
    .filelink-body {
      color: black;
      text-decoration: none;
      &:hover {
        color: $purple;
      }
      .filelink-filename {
        position: relative;
        .title {
          padding: 10px;
          cursor: pointer;
          font-size: 2.125rem;
          line-height: 44px;
          font-weight: 500;
        }
        &:after {
          content: "";
          position: absolute;
          right: 20px;
          top: 50%;
          transform: translateY(-50%);
          border-radius: 50%;
          width: 40px;
          height: 40px;
          background-image: url("../../Images/download.svg");
        }
      }
    }
  }
}