.sortable-slide-animation {
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s
}

.sortable-item-dragging {
  pointer-events: none
}

.cursor-drag {
  cursor: move
}

.draggable-element {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: -webkit-box-shadow .5s;
  transition: -webkit-box-shadow .5s;
  transition: box-shadow .5s;
  transition: box-shadow .5s, -webkit-box-shadow .5s;
  position: relative
}

.draggable-cursor-grab {
  cursor: -webkit-grab;
  cursor: grab
}

.dragging {
  cursor: move;
  position: relative;
  z-index: 9000 !important
}

.draggable-disabled {
  cursor: default
}

.draggable-return-animate {
  -webkit-transition: -webkit-transform .35s;
  transition: -webkit-transform .35s;
  transition: transform .35s;
  transition: transform .35s, -webkit-transform .35s;
  position: relative;
  z-index: 9000 !important
}