input[type=“checkbox”]{
appearance: none;
border: 3px solid #cc6699;
width: 25px;
height: 25px;
border-radius: 5px;
cursor: pointer;
background-color: white;
vertical-align:bottom;
margin: 5px 0;
transition: background-color .2s, border-color .2s;
}
input[type=“checkbox”]:checked{
background-color: green !important;
border-color: green !important;
}
input[type=“checkbox”]:checked::after{
content: "✓";
display: block;
text-align: center;
font-weight: bold;
line-height: 20px;
color: green;
background-color: #fff;
}