

@keyframes money_rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes money_wave {
  0% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}

.money {
  width: 164px;
  height: 120px;
  padding-left: 9px;
  padding-bottom: 33px;
}

  .money__inner {
    position: absolute;
    animation: money_rotate 1.5s linear infinite;
  }

  .money__figures {
    position: absolute;
    animation: money_rotate 1.5s linear infinite;
    animation-direction: reverse;
  }

  .money__text {
    position: absolute;
    animation: money_wave 1.5s ease infinite;
    animation-direction: alternate;
  }
  .money__ring {
    position: absolute;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  