.order-wrapper {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  align-items: flex-start;
  margin: 2em 0;
  gap: 1rem;
}

.list-group-item {
  margin-bottom: .5em;
}

.label-column {
  flex: 0 1 320px;
  min-width: 275px;
  max-width: 40%;

  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.label-column li {
  display: flex;
  counter-increment: step;

  align-items: center;
  background: #DEFEEE;
  padding: 0.25em 0.5em;

  min-height: 44px;
  box-sizing: border-box;
}


.label-column li span {
  display: flex;
}

.label-column li span::before {
  display: block;
  content: counter(step) ".";
  margin-right: 0.5em;
  flex-shrink: 0;
}



#order {
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

#order li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}

#order li.correct {
  background-color: #e7fdf2 !important;
}

.list-group-item {
  border: none;
}


.list-group-item {
  position: relative;
  padding-right: 60px;
  cursor: grab !important;
}

.handle {
  position: absolute;
  right: 0.25em;

}

.highlight {
  background-color: #e7fdf2;
}

.drag-background {
  background-color: #e7fdf2;
}
