.px-imageslider {
  position: relative;
}
.px-imageslider .image {
  background-color: white;
  border-radius: 15px;
  padding: 10px;
}
.px-imageslider .swiper[data-has_logos=false] .images .image img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.px-imageslider .swiper[data-has_logos=true] .images .image img {
  border: 0;
  min-height: inherit;
  max-height: 120px;
  object-fit: contain;
}
.px-imageslider .swiper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 100px;
  box-sizing: border-box;
  position: static;
}
.px-imageslider .swiper-wrapper {
  align-items: center;
}
.px-imageslider .buttons .btn-next,
.px-imageslider .buttons .btn-prev {
  background: var(--color-light-blue);
  opacity: 1;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 1;
  cursor: pointer;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.px-imageslider .buttons .btn-next svg,
.px-imageslider .buttons .btn-prev svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}
.px-imageslider .buttons .btn-prev {
  left: 0;
}
.px-imageslider .buttons .btn-next {
  right: 0;
}
.px-imageslider .buttons .btn-prev svg {
  transform: rotate(180deg);
}