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

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

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

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.6);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse_rotated {
  0% {
    transform: scale(1) rotate(-34deg);
  }
  50% {
    transform: scale(0.6) rotate(-34deg);
  }
  100% {
    transform: scale(1) rotate(-34deg);
  }
}

