/* -----------------------------------------------
Utils: Cursor
----------------------------------------------- */

.c-pointer:hover {
  cursor: pointer;
}

.c-move {
  cursor: move;
}

.c-grab {
  cursor: grab;
  &:active {
    cursor: grabbing;
  }
}

.c-default:hover {
  cursor: inherit;
}

.c-not-allowed:hover {
  cursor: not-allowed;
}

.pointer-events-none {
  pointer-events: none;
}
