.draggable-row {
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
    cursor: grab;
}

@keyframes wiggle {
    0% { transform: rotate( 0deg); }
   25% { transform: rotate( 5deg) scale(1.2); }
   50% { transform: rotate( 0deg) scale(1.4); }
   75% { transform: rotate(-5deg) scale(1.2); }
  100% { transform: rotate( 0deg); }
}

.dragging td {
    color: gray;
    animation: wiggle 0.1s infinite;
}

.stylish-table tbody tr#placeholder {
    background-color: var(--cambridge-blue);
}

.stylish-table tbody tr#placeholder td {
    color: white;
    animation: wiggle 0.1s infinite;
}