I see this CSS exists in your page, and it was added in Custom CSS area:
.order-bump .ob-header input[type="checkbox"] {
accent-color: rgb(0, 0, 0);
}
You can replace that code with following code:
input[type="checkbox"], input[type="radio"] {
accent-color: blue !important;
}
this will change all radio input and checkbox input to blue color.