/* Customize the label (the container) */
fieldset.spl-checkboxes.checkboxes {
    margin: 0 !important;
}

fieldset.spl-checkboxes label.checkbox {
    display: inline-block;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-right: 20px !important;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

label.spl-checkbox {
    display: inline-block;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

/* Hide the browser's default checkbox */
fieldset.spl-checkboxes label.checkbox input, label.spl-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
fieldset.spl-checkboxes .checkmark, label.spl-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 5px;
    border: 3px solid #636363;
}

fieldset.spl-checkboxes label.checkbox input:not(:checked) ~ .checkmark,
label.spl-checkbox input:not(:checked) ~ .checkmark {
    background-color: #eee !important;
}

/* When the checkbox is checked, add a blue background */
fieldset.spl-checkboxes label.checkbox input:checked ~ .checkmark,
label.spl-checkbox input:checked ~ .checkmark {
    border: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
fieldset.spl-checkboxes .checkmark:after,
label.spl-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
fieldset.spl-checkboxes label.checkbox input:checked ~ .checkmark:after,
label.spl-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
fieldset.spl-checkboxes label.checkbox .checkmark:after {
    left: 9px;
    top: 3px;
    width: 7px;
    height: 15px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

label.spl-checkbox .checkmark:after {
    left: 9px;
    top: 3px;
    width: 5px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

fieldset.spl-checkboxes .checktext, label.spl-checkbox .checktext {
    margin-top: 3px;
    display: block;
    line-height: 18px;
}

label.spl-checkbox .checkmark {
    height: 22px;
    width: 22px;
}

label.spl-checkbox .checktext {
    margin-top: 1px;
    margin-left: -4px;
    display: inline-block !important;
}

.full-width-field .ctech-col-form-label.animated-label {
    left: 10px;
}
