
/* Button loading state */
button.wcidm-loading, input[type="submit"].wcidm-loading{
  opacity: .7;
  pointer-events: none;
}

/* Highlight updated card */
.wcidm-highlight{
  animation: wcidmFlash 1.2s ease-in-out 1;
}
@keyframes wcidmFlash{
  0%{ box-shadow: 0 0 0 0 rgba(46,204,113,0.0); }
  30%{ box-shadow: 0 0 0 4px rgba(46,204,113,0.25); }
  100%{ box-shadow: 0 0 0 0 rgba(46,204,113,0.0); }
}
