/* Bootstrap-Inspired Checkbox Styling */
input.checkbox {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid #999999;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    display: inline-block;
    margin-right: 10px !important;
}
input.checkbox:checked:before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 600;
    content: '\f00c';
    position: absolute;
    font-size: 13px;
    color: white;
    left: 1.2;
    top: 1.5;
}
input.checkbox:focus {
    outline: none !important;
}
input.checkbox[disabled],
input.checkbox.disabled {
    background-color: #eeeeee !important;
    border-color: #cccccc;
    cursor: default !important;
}

/* Small Checkbox Sizing: */
input.checkbox.checkbox-sm {
    width: 15px;
    height: 15px;
}
input.checkbox.checkbox-sm:checked:before {
    font-size: 9px;
    top: 1;
    left: 1;
}

/* Large Checkbox Sizing: */
input.checkbox.checkbox-lg {
    width: 24px;
    height: 24px;
}
input.checkbox.checkbox-lg:checked:before {
    font-size: 18px;
    top: 1;
    left: 1;
}

/* Checkbox 'X'-Character Themes */
input.checkbox.checkbox-x:checked:before {
    content: '\f00d';
    left: 3.5;
    top: 1;
}
input.checkbox.checkbox-sm.checkbox-x:checked:before {
    content: '\f00d';
    left: 2.75;
    top: 1;
}
input.checkbox.checkbox-lg.checkbox-x:checked:before {
    content: '\f00d';
    left: 4.5;
    top: 1;
}


/* Bootstrap Checkbox Themes: */
/* Checkbox Primary */
.checkbox.checkbox-primary:checked,
.checkbox.checkbox-primary[checked],
.checkbox.checkbox-primary.checked {
    background-color: #6ca1d2;
    border-color: #6ca1d2;
}
.checkbox.checkbox-primary[disabled]:checked,
.checkbox.checkbox-primary.disabled:checked,
.checkbox.checkbox-primary[disabled][checked],
.checkbox.checkbox-primary.disabled[checked],
.checkbox.checkbox-primary[disabled].checked,
.checkbox.checkbox-primary.disabled.checked {
    background-color: #9ab9d5 !important;
    border-color: #9ab9d5;
}

/* Checkbox Default */
.checkbox.checkbox-default:checked,
.checkbox.checkbox-default[checked],
.checkbox.checkbox-default.checked {
    background-color: #797979;
    border-color: #797979;
}
.checkbox.checkbox-default[disabled]:checked,
.checkbox.checkbox-default.disabled:checked,
.checkbox.checkbox-default[disabled][checked],
.checkbox.checkbox-default.disabled[checked],
.checkbox.checkbox-default[disabled].checked,
.checkbox.checkbox-default.disabled.checked {
    background-color: #eeeeee !important;
    border-color: #cccccc;
}
.checkbox.checkbox-default[disabled]:before,
.checkbox.checkbox-default.disabled:before {
    color: #cccccc;
}


/* Checkbox Info */
.checkbox.checkbox-info:checked,
.checkbox.checkbox-info[checked],
.checkbox.checkbox-info.checked {
    background-color: #3aaef7;
    border-color: #3aaef7;
}
.checkbox.checkbox-info[disabled]:checked,
.checkbox.checkbox-info.disabled:checked,
.checkbox.checkbox-info[disabled][checked],
.checkbox.checkbox-info.disabled[checked],
.checkbox.checkbox-info[disabled].checked,
.checkbox.checkbox-info.disabled.checked {
    background-color: #82cbfa !important;
    border-color: #82cbfa;
}

/* Checkbox Danger */
.checkbox.checkbox-danger:checked,
.checkbox.checkbox-danger[checked],
.checkbox.checkbox-danger.checked {
    background-color: #c23d37;
    border-color: #c23d37;
}
.checkbox.checkbox-danger[disabled]:checked,
.checkbox.checkbox-danger.disabled:checked,
.checkbox.checkbox-danger[disabled][checked],
.checkbox.checkbox-danger.disabled[checked],
.checkbox.checkbox-danger[disabled].checked,
.checkbox.checkbox-danger.disabled.checked {
    background-color: #d7817e !important;
    border-color: #d7817e;
}

/* Checkbox Success */
.checkbox.checkbox-success:checked,
.checkbox.checkbox-success[checked],
.checkbox.checkbox-success.checked {
    background-color: #64b64c;
    border-color: #64b64c;
}
.checkbox.checkbox-success[disabled]:checked,
.checkbox.checkbox-success.disabled:checked,
.checkbox.checkbox-success[disabled][checked],
.checkbox.checkbox-success.disabled[checked],
.checkbox.checkbox-success[disabled].checked,
.checkbox.checkbox-success.disabled.checked {
    background-color: #83ca89 !important;
    border-color: #83ca89;
}

/* Checkbox Warning */
.checkbox.checkbox-warning:checked,
.checkbox.checkbox-warning[checked],
.checkbox.checkbox-warning.checked {
    background-color: #bd8718;
    border-color: #bd8718;
}
.checkbox.checkbox-warning[disabled]:checked,
.checkbox.checkbox-warning.disabled:checked,
.checkbox.checkbox-warning[disabled][checked],
.checkbox.checkbox-warning.disabled[checked],
.checkbox.checkbox-warning[disabled].checked,
.checkbox.checkbox-warning.disabled.checked {
    background-color: #d5b26f !important;
    border-color: #d5b26f;
}


/* Label Styles */
.checkbox-label {
    color: #818080;
    font-weight: normal;
    margin-bottom: 0px;
    display: block;
}
.checkbox-label-padded {
    padding-top: 3px;
    padding-bottom: 3px;
}
.checkbox-label>span,
.checkbox-label>p {
    position: relative;
    display: inline;
    cursor: pointer;
    font-size: 14px;
    color: #333333;
    top: -5px;
}

/* Some styling for note-type flag labels */
.note-type-label-check {
    display: inline-block;
    text-align: left;
    position: relative;
    top: -5px;
    margin-left: 0px;
    height: auto;
    word-break: break-word;
    width: 134px;
    font-size: 11px;
    padding: 3% 3%;
}

.chip-flex {
    display: flex !important;
    align-items: start;
}
