/* When the checkbox is checked, add a blue background */
.container14 input:checked ~ .checkmark14 {
background-color: limegreen;
border-radius: 25px;
transition: 0.15s;
}
/* Create the checkmark14/indicator (hidden when not checked) */
.checkmark14:after {
content: "";
position: absolute;
display: none;
}
/* Show the checkmark14 when checked */
.container14 input:checked ~ .checkmark14:after {
display: block;
}