.dan-file-attachment {
  background: #bfcddb50;
  padding: 50px 30px 30px 30px;
  text-align: center;
  position: relative;
  margin: 50px 0 !important;
  -webkit-box-shadow: 10px 10px 0 0 #f3bb11;
  box-shadow: 10px 10px 0 0 #f3bb11;
}
.dan-file-attachment a {
  text-decoration: none;
}
.dan-file-attachment::before {
  content: "Download";
  padding-left: 30px;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M19.463 5.576c-.688-.75-1.929-.796-2.756.031l-8.1 8.1c-.21.21-.21.476 0 .686c.21.21.476.21.686 0l6.7-6.7a1 1 0 0 1 1.414 1.414l-6.7 6.7a2.45 2.45 0 0 1-3.514 0a2.45 2.45 0 0 1 0-3.514l8.1-8.1c1.567-1.568 4.115-1.619 5.63.015c1.552 1.569 1.597 4.104-.03 5.613l-9.486 9.486c-2.19 2.19-5.624 2.19-7.814 0c-2.19-2.19-2.19-5.624 0-7.814l8.1-8.1a1 1 0 0 1 1.414 1.414l-8.1 8.1c-1.41 1.41-1.41 3.576 0 4.986c1.41 1.41 3.576 1.41 4.986 0l9.5-9.5l.031-.03c.75-.687.796-1.929-.031-2.756a1.06 1.06 0 0 1-.03-.031z"%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  font-size: 15px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  left: 10px;
  color:#b92028;
}
.dan-file-attachment .thumb {
  width: 100px;
  height: auto;
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width: 992px) {
  .dan-file-attachment .thumb {
    margin: 0 auto 30px auto;
  }
}
.file-info {
  gap: 20px;
  align-items: center;
  
}
.file-info > * {
  margin: 0;
}


@keyframes pulseAnimation {
  0% {
    box-shadow: 0 0 0 0px #b9202870;
  }
  70% {
    box-shadow: 0 0 0 10px #b9202800;
  }
  100% {
    box-shadow: 0 0 0 0px #b9202800;
  }
}

.dan-file-attachment .btn {
  animation: pulseAnimation 2s infinite;

}