in platform/core/flow-design-system.module.js [70:81]
$(document).ready(function () {
//add fds attr to body tag to allow fine grain style overrides
document.body.setAttribute('fds', '');
//override the hover styles for checkbox borders
$(document.body).on('mouseenter', '.mat-checkbox-inner-container', function () {
$(this).find('.mat-checkbox-frame').css('border-color', '#1491C1');
});
$(document.body).on('mouseleave', '.mat-checkbox-inner-container', function () {
$(this).find('.mat-checkbox-frame').css('border-color', '#DDDDDD');
});
});