.mk-clean-button {
    font-family: cursive!important;
    padding: 5px 20px!important;
    cursor: default!important;
}

#mk-pm-clean-banner {
    animation-name: MKCleanAnimation;
        -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes MKCleanAnimation {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}