/* Source common/css/styles/keyframes/highlighted_anchor.scss */

@keyframes highlighted_anchor {
  0% {
    background: transparent;
    box-shadow: none;
  }
  70% {
    background: rgba(9, 80, 147, 0.1);
    box-shadow: 0 0 0 1.25rem rgba(9, 80, 147, 0.1);
  }
  100% {
    background: transparent;
    box-shadow: none;
  }
}

/* Source common/css/styles/keyframes/link_arrow_down.scss */

@keyframes link_arrow_down {
  0% {
    transform: translateY(0) rotate(90deg);
  }
  40% {
    transform: translateY(0.375rem) rotate(90deg);
  }
}

/* Source common/css/styles/keyframes/link_arrow_right.scss */

@keyframes link_arrow_right {
  0% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(0.375rem);
  }
}

/* Source common/css/styles/keyframes/preloader_rotate.scss */

@keyframes preloader_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

