Align product info to the left on mobile phone only / Impulse Theme

I would like to align the marked area to the left instead of being centered:

This is the website link: https://diva-lash.com/products/pestanas-magneticas

Thank you on advance!!

Hi @jtorres ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css->paste below code at the bottom of the file:
@media (max-width: 768px) {
.product-single__meta {
    text-align: left;
}
.sales-point .icon-and-text {
    justify-content: left;
}
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.