.reorder-popup-ct {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99999999999;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  font-family: proxima-nova;
}

.reorder-popup {
  padding: 20px;
  border: 5px solid #444;
  background-color: #222;
  border-radius: 10px;
  width: 500px;
}

.reorder-popup .items-ct {
  height: 500px;
  overflow-y: scroll;
  margin-bottom: 20px;
  border-radius: 5px;
  position: relative;
  box-shadow: inset 0 0 15px 0 #000;
  padding: 5px;
}

.reorder-popup .item-ct {
  display: flex;
  align-items: center;
  margin-top: 5px;
  cursor: grab;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
  justify-content: space-between;
  padding-inline: 10px;
}

.reorder-popup .item-ct.heading {
  cursor: not-allowed;
}

.reorder-popup .item-ct.heading span {
  display: none;
}

.reorder-popup .item-ct p {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  user-select: none;
}

.reorder-popup .item-ct.heading p {
  font-size: 24px;
  font-weight: 900;
  color: grey;
}

.reorder-popup .item-ct span {
  color: #3aff98;
}

.reorder-popup .btns-row {
  display: flex;
  justify-content: space-evenly;
}

.reorder-popup .util-cancel-btn {
  padding-inline: 0px;
}