.creatorev-checkbox {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: .9rem;
  gap: 12px;
  position: relative;
}
.creatorev-checkbox-input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}
.creatorev-checkbox-box {
  flex: 0 0 16px;
  height: 16px;
  position: relative;
  width: 16px;
}
.creatorev-checkbox-box::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='25' viewBox='0 0 27 25' fill='none'%3E%3Cpath d='M1.5767 11.7188C8.15606 8.8971 12.2724 5.99002 19.5948 3.83761L7.57666 20.2187L26.0767 17.2188' stroke='%23E5ACFF' stroke-width='8' stroke-linejoin='bevel'/%3E%3C/svg%3E") center / contain no-repeat;
  content: "";
  height: 25px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 27px;
}
.creatorev-checkbox-box::after {
  border: 1px solid var(--black);
  content: "";
  inset: 0;
  position: absolute;
}
.creatorev-checkbox-input:checked + .creatorev-checkbox-box::before {
  opacity: 1;
}
.creatorev-checkbox-input:focus-visible + .creatorev-checkbox-box::after {
  outline: 2px solid #E5ACFF;
  outline-offset: 3px;
}
