/* Customize the label (the container) */
.checkbox {
    display: block;
    position: relative;
    padding-left: 29px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 17px;
}

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

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #8b6faf;
}

/* When the checkbox is checked, add a purple background */
.checkbox input:checked~.checkmark {
    background-color: #8b6faf;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked~.checkmark:after {
    display: block;
}

.checkmark-small {
    width: 15px;
    height: 15px;
}

.checkbox.checkbox-small {
    margin: 0px 0px 10px 0px;
    font-size: 12px;
}
