How can I eliminate white space under purchase buttons?

I’m trying to remove this white space under my purchase buttons on the product page:

I’ve tried to do this by removing visually hidden stuff using comments like this but it has not worked.

My theme is Debut and my website is hypeunionstore.com

Thanks!

Try adding this code to the bottom of theme.css

.product-single__description.rte {
  margin-top: 0;
}
.shopify-payment-button__more-options._2ogcW-Q9I-rgsSkNbRiJzA.shopify-payment-button__button--hidden {
  margin-top: 0;
}

There is “more payment options” under the Buy It Now button, nevertheless, the margins are significantly less than originally.

Perfect, thank you.

I’m glad the issue is solved!