* {
	cursor: url(cursors/aero_arrow.cur), auto;
}

*:active, *:onclick {
  animation: animate 0.4s infinite !important;
}

a:hover, button:hover, .hover, .form-check-input, .btn, .btn:hover, .btn strong{
  animation: animate 0.4s infinite !important;
}

input{
	cursor: url(cursors/aero_select.cur), auto;
}

textarea{
	cursor: url(cursors/aero_select.cur), auto;
}

@keyframes animate{
  0%{ 
    cursor: url(cursors/link1.png), auto;
  }
  50%{ 
    cursor: url(cursors/link2.png), auto;
  }
  100%{ 
    cursor: url(cursors/link1.png), auto;
  }
}