/**
 * The dnd-list should always have a min-height,
 * otherwise you can't drop to it once it's empty
 */

.drag-drop-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: 0;
  margin-right: 0;
  margin-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  background-color: #f6f8f8;
  min-height: 42px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border: 1px solid #ddd;
}

.drag-drop ul[dnd-list] {
  min-height: 42px;
  padding-left: 0px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.drag-drop-container ul {
  margin-top: 0!important;
}

.drag-drop ul[dnd-list],
.drag-drop ul[dnd-list] > li {
  position: relative;
}

/**
 * The dndDraggingSource class will be applied to
 * the source element of a drag operation. It makes
 * sense to hide it to give the user the feeling
 * that he's actually moving it.
 */
.drag-drop ul[dnd-list] .dndDraggingSource {
  display: none;
}

/**
 * An element with .dndPlaceholder class will be
 * added to the dnd-list while the user is dragging
 * over it.
 */
.drag-drop ul[dnd-list] .dndPlaceholder {
  background-color: #ddd;
  display: block;
  min-height: 42px;
}

.drag-drop ul[dnd-list] li {
  background-color: #fff;
  border: 1px solid #ddd;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  cursor: pointer;
}

.drag-drop-container ul[dnd-list] li:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-top: 0;
}

/**
 * Handle positioning
 */
 .drag-drop-list-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
 }
.drag-drop .handle {
  cursor: move;
}

.drag-drop .number-order {
  flex: 1;
}

.drag-drop .name {
  flex: 4;
}

.drag-drop .action {
  flex: 1;
}

.drag-drop .unlock-time {
  flex: 2;
  text-align: center;
}
.drag-drop .unlock-time input{
  /*text-align: right;*/
}
