@require './variables';

@keyframes flashYellow
  0%
    background-color $bz-yellow
  90%
    background-color $bz-yellow
  100%
    background-color inherit

@keyframes flashRed
  0%
    background-color rgba($bz-red, .5)
  50%
    background-color rgba($bz-red, .5)
  100%
    background-color inherit

@keyframes flashGreen
  0%
    background-color rgba($bz-green, .5)
  50%
    background-color rgba($bz-green, .5)
  100%
    background-color inherit

@keyframes fillFlashGreen
  0%
    fill $bz-green
  90%
    fill $bz-green
  100%
    fill $bz-grey--dark


@keyframes pulse
  0%
    opacity 0
  50%
    opacity 1
  100%
    opacity 0


@keyframes spin
  from
    transform rotate(360deg)
  to
    transform rotate(0deg)

@keyframes flyIn
  from
    transform scale(1.25)
  to
    transform scale(1)
