.creatorev-radio {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.15rem;
  gap: 12px;
  line-height: 1;
  position: relative;
}
.creatorev-radio-input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}
.creatorev-radio-mark {
  border: 1px solid var(--black);
  border-radius: 999px;
  flex: 0 0 20px;
  height: 20px;
  position: relative;
  width: 20px;
}
.creatorev-radio-mark::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='%230047FF' 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-radio-input:checked + .creatorev-radio-mark::before {
  opacity: 1;
}
.creatorev-radio-input:focus-visible + .creatorev-radio-mark {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}
