.px-imageslider {
  position: relative;
  width: 100%;
}
.px-imageslider .swiper {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
}
.px-imageslider .swiper .swiper-wrapper {
  align-items: center;
  height: auto;
}
.px-imageslider .swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.px-imageslider .swiper[data-has_logos=true] .images .image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.px-imageslider .swiper[data-has_logos=true] .images .image img {
  border: 0;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 152px;
  object-fit: contain;
  display: block;
}
.px-imageslider .swiper[data-has_logos=false] .images .image {
  width: 100%;
  height: 100%;
}
.px-imageslider .swiper[data-has_logos=false] .images .image img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.px-imageslider .navigation {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 60px;
  bottom: 0;
}
@container (width <=1024px) {
  .px-imageslider .navigation {
    margin-top: 30px;
  }
}
@container (width <=768px) {
  .px-imageslider .navigation {
    margin-top: 20px;
  }
}
.px-imageslider .navigation .swiper-pagination {
  position: relative;
  bottom: auto;
  width: auto;
}
.px-imageslider .navigation .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #b5b5b5;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}
.px-imageslider .navigation .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--main-color, #FF541E);
}

.editor-styles-wrapper .px-imageslider .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}