:root {
  --icon-check: url("data:image/svg+xml,%3Csvg class='ms-2' width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.646 5.51756L0.270996 3.14256L0.864746 2.54881L2.646 4.33006L6.46891 0.507141L7.06266 1.10089L2.646 5.51756Z' fill='%231E95D3' /%3E%3C/svg%3E");
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
  padding-right: 0;
}

.list-check {
  color: var(--gray-600);
  display: flex;
  flex-direction: column;
  gap: 9px 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-check li::before {
  content: "";
  display: inline-block;
  height: 6px;
  margin-left: 8px;
  width: 8px;
}

.list-check li.check {
  color: var(--green-100);
}

.list-check li.check::before {
  background-image: var(--icon-check);
}

