.product-carousel-block {
  margin: 1rem 0 3rem;
  position: relative;
}

.product-carousel-block::after {
  display: block;
  position: absolute;
  content: "";
  width: 1.5rem;
  height: 100%;
  background-color: #fff;
  top: 0;
  right: -1.5rem;
}

ul.siema-carousel {
  margin: 0 -1rem 0 0 !important;
}

ul.siema-carousel > div {
  display: flex;
}

ul.siema-carousel > div > div {
  margin-right: 1rem;
}

.product-carousel-block ul.siema-carousel.products li.product {
  width: 100%;
  margin: 0;
}

ul.siema-carousel li img {
  max-width: 100%;
}

.control {
  font-size: 0;
  position: absolute;
  width: 2rem;
  height: 2rem;
  padding: 0;
  transition: 0.5s;
  z-index: 1;
}

.control.prev {
  left: -1.5rem;
  top: 40%;
  background: no-repeat url(./block-assets/ARROW_S_LEFT.svg) transparent;
  background-size: contain;
}

.control.next {
  right: -1.5rem;
  top: 40%;
  background: no-repeat url(./block-assets/ARROW_S_RIGHT.svg) transparent;
  background-position: 100% 0;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .control {
    width: 3rem;
    height: 3rem;
  }
  .siema-carousel-wrapper:hover .control.prev {
    left: -2rem;
  }
  .siema-carousel-wrapper:hover .control.next {
    right: -2rem;
  }
  .control.prev {
    left: -1.7rem;
    background-size: 40%;
  }
  .control.next {
    right: -1.7rem;
    background-size: 40%;
  }
}
