Order bump checkout CSS


In the order bump on checkout, there is an option to have it selected or unselected. We are kindly asking for the CSS code to adjust the position of this (Tick box) (blue color when selected), we want to adjust it up/down, left/right with css. Please provide the code for us so we can modify it

You can use this css code to adjust the order bump checkbox:

.order-bump {
    position: relative;
}
.order-bump input[type="checkbox"] {
   position: absolute;
   top: 14px;
   left: 9px;
}