
.grab-container
{
    cursor: grab;          /* Visual hand icon */            
}
        
.grab-container:active {
    cursor: grabbing;      /* Closed hand when clicking */
}
        
/*prevent text selection while mouse down and draging */
.no-select {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
    user-select: none; /* Standard syntax */
}

