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

@keyframes slide_in_left {
  0% {
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

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

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

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

@keyframes slider_fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

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

