.card-checkbox {
    padding: 0 .5rem;
}

.card-checkbox :hover {
    cursor: pointer;
}

.card-checkbox input[type="checkbox"] {
    visibility: hidden;
}

.checkmark-circle {
    width: 25px;
    height: 25px;
    background-color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkmark {
    width: 10px;
    height: 7px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}