.form-editor__content {
    border: 0;
}

.form-editor__content ul {
    list-style: auto;
    list-style-type: circle;
}

.form-editor__content ol {
    list-style: auto;
    list-style-type: decimal;
}

form-checkbox__checkmark {
    position: relative;
}

.form-checkbox__icon {
    position: absolute;
}

.form-checkbox__input:checked + .form-checkbox__checkmark .form-checkbox__icon.checkbox-checked {
    opacity: 1;
}
.form-checkbox__input:not(:checked) + .form-checkbox__checkmark .form-checkbox__icon.checkbox-checked {
    opacity: 0;
}

.form-checkbox__input:checked + .form-checkbox__checkmark .form-checkbox__icon.checkbox-unchecked {
    opacity: 0;
}
.form-checkbox__input:not(:checked) + .form-checkbox__checkmark .form-checkbox__icon.checkbox-unchecked {
    opacity: 1;
}