/**
these are fixes, which should be done in the global theme
*/

/**
Fix for Hero Banner Slider: only show first slide on loading 
*/
ul[data-items-element='swiper-wrapper'] {
  transform: translateZ(0);
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: initial;
  box-sizing: content-box;
}

li[data-items-element='swiper-slide'] {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
