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

.dragging-active-card {
  position: relative;
  box-shadow: none !important;
  /* border-left: 9px solid #314174 !important; */
}

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

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

.dragging-active-list {
  position: relative;
  border-radius: 5px !important;
  border-bottom: none !important;
  visibility: hidden;
}

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

.cloned-list {
  transform: rotate(2deg);
  border-bottom: none !important;
}