Pure CSS custom radio button.
.radio { appearance: none; width: 20px; height: 20px; border: 2px solid #cbd5e1; border-radius: 50%; cursor: pointer; display: inline-grid; place-content: center; }
.radio::before { content: ""; width: 10px; height: 10px; border-radius: 50%; transform: scale(0); transition: 120ms; background: #0ea5e9; }
.radio:checked { border-color: #0ea5e9; }
.radio:checked::before { transform: scale(1); }