@keyframes reportblink {
  0% {
    opacity: .2;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: .2;
  }
}
.btn-pdf-report {
  cursor: pointer;
}
.btn-pdf-report span.icon-text span {
  display: none;
  animation-name: reportblink;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
.btn-pdf-report span.icon-text span:nth-child(2) {
  animation-delay: .2s;
}
.btn-pdf-report span.icon-text span:nth-child(3) {
  animation-delay: .4s;
}
.btn-pdf-report.loading span.icon-text span {
  display: inline;
}
iframe.btn-pdf-report-download-iframe {
  position: absolute !important;
  top: 0;
  width: 1900px !important;
  height: 0 !important;
  opacity: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
