/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}*/
/*p{
  text-align:center;
}*/
/*body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #5E17EC;
}*/
.sortable-list {
  width: 700px;
/*  background: rgba(255,255,255,0.9);*/
  border-radius: 7px;
  padding: 30px 25px 20px;
/*  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);*/
}
.sortable-list .item {
  list-style: none;
/*  display: flex;*/
  cursor: move;
/*  background: rgba(255,255,255,0.99);*/
  align-items: center;
  border-radius: 5px;
/*  padding: 10px 13px;
  margin-bottom: 11px;
*//*  box-shadow: 0 2px 4px rgba(0,0,0,0.06); */
  border: 1px solid #ccc;
  border-color: light-dark(#c5cdd3, #4d5966);

/*  justify-content: space-between;*/
  justify-content: left;
  padding: 3px 3px;
  margin-bottom: 3px;
}
.item .details {
  display: flex;
  align-items: center;
}

.details {
/*  padding-left: 1rem;*/
}

/*.item .details i.brand-icon {
  padding:5px;
  margin-right: 12px;
  border-radius: 50%;
}*/
/*.item .details span {
  font-size: 1.13rem;
}*/
/*.item i {
  color: #474747;
  font-size: 1.13rem;
}*/
.item.dragging {
  opacity: 0.6;
}
.item.dragging :where(.details, i) {
  opacity: 0;
}
img.poster-tiny {
  width: 28px;
  height: 42px;
  object-fit: cover;
  border-radius: 0.2rem;
  margin-right: 5px;
}
span.item-title {
  margin-left: 5px;
}