I tried to remove the focus background when the user clicks on the input (radio, checkbox or select) but it not works. These are the styles that I put on the element:
.form-holder input[type="radio"]:focus, .form-holder input[type="checkbox"]:focus {
background: transparent;
box-shadow: none;
outline: 0!important;
outline: none!important;
-webkit-tap-highlight-color: transparent!important;
}
Any suggestions? Thanks.