How can I center the slideshow control buttons on my Impact theme?

Hello,

I would like to center my slide control buttons at the bottom, just like they are currently displayed on mobile and desktop.

How can I achieve this?

Here is my theme: Impact
Here is my site: https://tata-paulette-france.myshopify.com/
Here is the password: mowpre

@Matys_hfn

like this following screenshot

No i want to center

@Matys_hfn

Please add the following CSS code to your assets/theme.css bottom of the file.

.slideshow__controls {
    position: absolute;
    left: 0 !important;
    right: 50% !important;
    justify-content: center !important;
    text-align: center !important;
    display: inline-flex !important;
    width: 100% !important;
}

Thanks!