input[type="radio"] { -webkit-appearance: none; appearance: none; background-color: var(--form-background); margin: 0; font: inherit; color: #ccc; width: 26px; height: 26px; border: 3px solid #ccc; border-radius: 50%; transform: translateY(-0.075em); display: inline-grid; place-content: center; margin-left: 2px !important; margin-right: 5px !important; } input[type="radio"]::before { content: ""; width: 14px; height: 14px; border-radius: 50%; transform: scale(0); transition: 120ms transform ease-in-out; box-shadow: inset 1em 1em #e52729; /* Windows High Contrast Mode */ background-color: #e52729; } input[type="radio"]:checked::before { transform: scale(1); } input[type="radio"]:focus { outline: max(2px, 0.15em) solid currentColor; outline-offset: max(2px, 0.15em); }