.pdf-download-button {
  display: inline-block;
  border: 1px solid;
  border-color: #ffc709;
  border-radius: 2em;
  background: #f7a53b;
  color: #ffffff !important;
  text-decoration: none;
  line-height: 1;
  padding: 0.5em 1em 0.6em;
  transition: all 0.3s;
  font-size: inherit;
  font-weight: bold;
  cursor: pointer;
  font-weight: normal;
}

.pdf-download-button:not(.disabled):hover {
  background: #ffc709;
}

.pdf-download-button:not(.disabled):active,
.pdf-download-button:not(.disabled):focus {
  background: #ffc709;
}

.pdf-download-button.disabled {
  background: #808080;
  border-color: #ababab !important;
  color: #e0e0e0 !important;
  cursor: pointer;
}

.pdf-download-button.downloading {
  background: #8ad8aa;
  border-color: #c4ecd5 !important;
  color: #15b256 !important;
}

.pdf-download-button.disabled:before {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 0.7em;
  height: 0.7em;
  margin: 0 0.5em 0 0;
  position: relative;
  top: -0.1em;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  border-color: #e0e0e0 transparent #e0e0e0 transparent;
  animation: load-more 1.2s linear infinite;
}

.pdf-download-button.downloading:before {
  display: none;
  /*border: 2px solid #c4ecd5;
  border-color: #c4ecd5 transparent #c4ecd5 transparent;*/
}

@keyframes load-more {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
