CSS for grabbing cursor drag and drop
Adapted from: Stack Overflow
.et_pb_slides {
cursor: move; /* fallback if grab cursor is unsupported */
cursor: grab;
cursor: -moz-grab;
cursor: -webkit-grab;
}
.et_pb_slides:active {
cursor: grabbing;
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}