.animatable {
  /* initially hide animatable objects */
  visibility: hidden;
  /* initially pause animatable objects their animations */
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.animated {
  visibility: visible;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.btn-primary {
  color: #111;
  font-weight: 500;
  font-size: 18px;
  padding: 14px 34px;
  background-color: #fbb517;
  border-color: #fbb517;
}

.btn-primary:hover, .btn-primary:active {
  color: #000 !important;
  background-color: #f9ae04 !important;
  border-color: #e5a004 !important;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.btn-primary:focus {
  color: #000;
  background-color: #f9ae04;
  border-color: #e5a004;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-border {
  background-color: transparent;
  border-color: #333;
}
/*# sourceMappingURL=style.css.map */