#myCarousel {
  --f-carousel-slide-width: calc(94% / 2);
  --f-carousel-spacing: 0;

  --f-button-next-pos: 30px;
  --f-button-prev-pos: 30px;

  --f-button-width: 44px;
  --f-button-height: 44px;
  --f-button-border-radius: 50%;

  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-active-color: #fff;

  --f-button-bg: rgba(0, 0, 0, 0.5);
  --f-button-hover-bg: rgba(0, 0, 0, 0.8);
  --f-button-active-bg: rgba(0, 0, 0, 0.8);

  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  --f-button-svg-stroke-width: 3;
}

#myCarousel .f-carousel__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 10% 10px;
}

#myCarousel img {
  border-radius: 4px;
  transform: scale(var(--f-scale, 1)) translateX(var(--f-translateX, 0));
  background: #fff;
  filter: blur(var(--f-blur, '0'));
}
#myCarousel .f-carousel__slide .f-carousel__slide_img {
  width: 800px;
  height: 300px;
}
@media (max-width: 600px) {
  #myCarousel .f-carousel__slide .f-carousel__slide_img {
    width: 300px;
  }
}