/*
 *= require_tree .
 *= require_self
 *= require @fortawesome/fontawesome-free/css/all
 */

/* Loading indicator for Turbo Frames */
turbo-frame[busy] {
  opacity: 0.6;
  pointer-events: none;
}

turbo-frame[busy]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
