.rotate .tn-atom__img {
    animation: spin 5s linear infinite; 
   }

   @keyframes spin {
       100% {
           transform: rotate(360deg); 
       }
}


.button-orange .tn-atom {
    animation: glowing-two 1300ms infinite;


#rec689722021 .tn-elem[data-elem-id="1704810522068"] {
animation: glowing-two 1300ms infinite;


@keyframes glowing-two {
  0% {
    background-color: #eb4200;
    box-shadow: 0 0 5px #eb4200;
  }
  50% {
    background-color: #ff7a00;
    box-shadow: 0 0 20px #ff7a00;
  }
  100% {
    background-color: #eb4200;
    box-shadow: 0 0 5px #eb4200;
  }
}