How do I fully rid of the 1px wide sidebar border? [closed]

It looks like your in themes style.css at a certain breakpoint min-width: 769px it’s adding a border right. You could get rid of it by adding the following to your child themes CSS or The Customizers CSS Panel:

@media (min-width: 769px) {
    .ast-right-sidebar #primary {
        border-right: 0px;
    }
}