@keyframes example {
 
  30%  {background-color:#A9E2F3; right:400px; top:0px;}
  50%  {background-color:#D8F781; left:600px; top:200px; transform: rotate(80deg)}

  75%  {background-color:#F5A9BC; left:0px; top:200px;}
  100% {background-color:none; left:0px; top:0px;}
}
.rmj-inicial01{
  background-color: none;
  animation-name: example;
  animation-duration: 1s;
}
@keyframes realce {
 
  0%  {opacity: 0.1;}
  50%  {opacity: 0.5;}
  75%  {opacity: 0.7}
  100% {opacity: 1;}
}
.rmj-realce{
  background-color: none;
  animation-name: realce;
  animation-duration: 1s;
}

@keyframes movinput {
  30%  {background-color:#A9E2F3; right:400px; top:0px;}
  50%  {background-color:#D8F781; left:600px; top:200px; transform: rotate(110deg)}

  75%  {background-color:#F5A9BC; left:0px; top:200px;}
  100% {background-color:none; left:0px; top:0px;}


}
.rmj-mov-input{
  background-color: none;
  animation-name: movinput;
  animation-duration: 1s;
}





