Onay Kutusu 13

/* Hide the default checkbox */
.container14 input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}

.container14 {
display: block;
position: relative;
cursor: pointer;
font-size: 20px;
user-select: none;
}

/* Create a custom checkbox */
.checkmark14 {
position: relative;
top: 0;
left: 0;
height: 1.3em;
width: 1.3em;
background-color: #ccc;
border-radius: 25px;
transition: 0.15s;
}

/* 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;
}

/* Style the checkmark14/indicator */
.container14 .checkmark14:after {
left: 0.45em;
top: 0.25em;
width: 0.25em;
height: 0.5em;
border: solid white;
border-width: 0 0.15em 0.15em 0;
transform: rotate(45deg);
}