How can I change a clickable pop-up to a button on my website?

Good day ,

There is option called EMAIL ME WHEN AVAILABLE on sold-out products on my website when clicked it opens up a pop-up . Is there any way to change that to look like a button , so it displays the same pop-up but it looks like this.

SITE URL :: https://pa0n5prg8hpj4k25-71493648693.shopifypreview.com [ MENU->FEEDING->HIGH CHAIRS&BOOSTER->HIGHCHAIRS ] soldout products can be seen there.

THANK YOU!!

Hi @Anonymous

You can change it into a button like your site by using this CSS code

#ProductPopup-notify {
    border: var(--button-border-width) solid transparent;
    background-color: rgba(var(--color-button),var(--alpha-button-background));
    color: rgb(var(--color-button-text));
    padding: 1rem 1.5rem !important;
}

Thank You ,

Code is working , can you also assist me in hiding the sold out button and replacing it with email me button . Is there any css code for that?