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

@keyframes highlighted_anchor {
  0% {
    background: transparent;
    box-shadow: none;
  }
  70% {
    background: rgba(0, 47, 105, 0.1);
    box-shadow: 0 0 0 0.625rem rgba(0, 47, 105, 0.1);
  }
  100% {
    background: transparent;
    box-shadow: none;
  }
}

