input[type="radio"], input[type="checkbox"] { display: flex; align-items: center; justify-content: center; width: 17px; height: 17px; cursor: pointer; appearance: none; border: 2px solid #e8ebf0; &:before, &:after { opacity: 0; background: #fff; z-index: 2; } &:checked { border-color: var(--paletteColor1); background: var(--paletteColor1); &:before, &:after { opacity: 1; } } &:focus { outline: none; } } input[type="checkbox"] { border-radius: 2px; position: relative; &:before, &:after { position: absolute; content: ''; top: 0; bottom: 0; margin: auto 0; border-radius: 1px; } &:before { left: 4px; width: 2px; height: 7px; transform: rotate(-40deg) translateX(-1px); } &:after { right: 4px; width: 2px; height: 9px; transform: rotate(35deg); } } input[type="radio"] { border-radius: 100%; &:before { content: ''; width: 5px; height: 5px; border-radius: inherit; } }