html {
  touch-action: none;
  overflow: hidden;
}

.dragging-active-card {
  position: relative;
}

.dragging-active-card::before {
  content: "";
  background: #e0e0e0;
  position: absolute;
  z-index: 500;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 3px;
}

.dragging-active-card {
  box-shadow: none !important;
}

.cloned-card {
  transform: rotate(3deg);
}

.dragging-active-list {
  position: relative;
}

.dragging-active-list::before {
  background-color: #026dab;
  content: "";
  position: absolute;
  z-index: 500;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 5px;
}

.dragging-active-list {
  border-radius: 5px !important;
  background-color: #026dab !important;
}

.cloned-list {
  transform: rotate(2deg);
}