Adjust padding of the popup blocks

Add the code below to Custom CSS field on your Popup widget’s Settings tab:

[class*="Block__BaseBlock-sc"]:nth-child(1) {
padding: 0px 0px;
}

In brackets, nth-child(1) set the number of the required block (counting from top to bottom).

The first value in the 2nd line of the code is vertical padding, and the second value is horizontal padding