@charset "windows-1252";

@keyframes static-animation-pulse { 
  25% { transform: scale(1.1); }
  75% { transform: scale(0.9); }
}

.static-animation-pulse:active, .static-animation-pulse:focus, .static-animation-pulse:hover { animation-name: static-animation-pulse; animation-duration: 1s; animation-timing-function: linear; animation-iteration-count: infinite; }