/* Create a custom checkbox */
.custom-checkbox {
    position: relative;
    width: 25px;
    height: 25px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
}

/* On check, add a tick */
.custom-checkbox:after {
    content: "";
    position: absolute;
    display: none;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox-label{
    font-size: larger;
}