@keyframes cv-action-spin {
  to {
    transform: rotate(360deg);
  }
}

button.cv-action-busy {
  pointer-events: none;
  opacity: 0.86;
}

button.cv-action-busy::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  animation: cv-action-spin 0.75s linear infinite;
  vertical-align: -1px;
}

button[disabled] {
  cursor: not-allowed;
}
