<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* ANIMAION BOTON */



@keyframes btn-default { 
  0% {
    transform: scale(1) translateY(0); 
  }
  10% {
    transform: scale(1.02, 1.1); 
  }
  30% { 
/*    transform: scale(0.8, 1.1) translateY(-10px); */
  }
  50% { 
    transform: scale(1) translateY(0); 
  }
  100% { 
    transform: translateY(0); 
  }
}

.btn-default {
  animation: btn-default 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1);}


.btn-default:hover {
	animation: none
}



</pre></body></html>