/*!
 * hcg-draggable - vanilla JS draggable elements
 * HTML Code Generator (https://www.html-code-generator.com/javascript/draggable-library)
 * License: MIT
 */

.hcg-draggable {
  -webkit-user-select: none;
  user-select: none;
}

/* grab cursor only on the draggable surface (root when no handle, or the handle child) */
.hcg-draggable.hcg-draggable-handle,
.hcg-draggable .hcg-draggable-handle {
  cursor: grab;
}

.hcg-draggable.hcg-draggable-dragging.hcg-draggable-handle,
.hcg-draggable.hcg-draggable-dragging .hcg-draggable-handle {
  cursor: grabbing;
}

.hcg-draggable.hcg-draggable-dragging {
  z-index: 9999;
  opacity: 0.95;
}

.hcg-draggable.hcg-draggable-disabled.hcg-draggable-handle,
.hcg-draggable.hcg-draggable-disabled .hcg-draggable-handle {
  cursor: default;
}

.hcg-draggable-reverting {
  transition: transform 0.25s ease;
}
