.iw-product-slider { position: relative; width: 100%; }

.iwps-viewport { overflow: hidden; border-radius: 12px; }
.iwps-track { display: flex; transition: transform .35s ease; will-change: transform; }
.iwps-slide { min-width: 100%; user-select: none; }
.iwps-img { width: 100%; height: auto; display: block; }

.iwps-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  border:0;
  width:34px;
  height:34px;
  border-radius:999px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.35);
  color:#fff;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

.iwps-btn svg{
  width:18px;
  height:18px;
  display:block;
}

.iwps-prev{ left:10px; }
.iwps-next{ right:10px; }

.iwps-btn:hover{ background:rgba(0,0,0,.5); }
.iwps-btn:active{ transform:translateY(-50%) scale(.96); }
.iwps-btn:focus{ outline:2px solid rgba(0,0,0,.25); outline-offset:2px; }

@media (max-width: 768px){
  .iwps-btn{ width:32px; height:32px; }
  .iwps-btn svg{ width:17px; height:17px; }
}