/* Ventanas movibles del proceso de reclutamiento.
   `translate` se mantiene separado de `transform` para no romper los centrados
   existentes basados en translate(-50%, -50%). */
[data-rec-draggable-modal].rec-modal-draggable {
    --rec-modal-drag-x: 0px;
    --rec-modal-drag-y: 0px;
    translate: var(--rec-modal-drag-x) var(--rec-modal-drag-y);
}

[data-rec-drag-handle].rec-modal-drag-handle {
    cursor: grab;
    user-select: none;
    touch-action: none;
}

[data-rec-drag-handle].rec-modal-drag-handle:active,
body.rec-modal-dragging [data-rec-drag-handle].rec-modal-drag-handle {
    cursor: grabbing;
}

body.rec-modal-dragging {
    cursor: grabbing !important;
    user-select: none !important;
}

@media (max-width: 767px) {
    [data-rec-drag-handle].rec-modal-drag-handle {
        cursor: default;
        touch-action: auto;
    }
}
