Pure CSS toggle switch.
.toggle { appearance: none; width: 44px; height: 24px; background: #cbd5e1; border-radius: 24px; position: relative; cursor: pointer; transition: 200ms; }
.toggle::before { content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: 200ms; }
.toggle:checked { background: #0ea5e9; }
.toggle:checked::before { transform: translateX(20px); }