Remove arrows & pause and play button mobile & desktop remove counter on mobile

Hello @jakethagun
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> component-slideshow.css
add this code at the end of the file

@media screen and (min-width: 750px) {
.slideshow__autoplay.slider-button {
display: none !important;
}
}
@media screen and (max-width: 749px) {
slideshow-component.page-width .slideshow__autoplay {
display: none !important;
}
}
.slider-counter__link--active.slider-counter__link--dots .dot {
background-color: white !important;
}
.slider-counter.caption {
display: none !important;
}
.slider-button {
display: none !important;
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks