.px-imageslider {
  position: relative;
  max-width: var(--maxWidth);
  width: var(--baseWidth);
  margin: 0 auto;
  padding-bottom: clamp(2.3333333333rem, 1.4324324324rem + 4.222972973vw, 5.6666666667rem);
}
@media screen and (max-width: 640px) {
  .px-imageslider .slick-navigation {
    margin-top: 20px;
    position: relative;
    order: 2;
    z-index: 1;
    top: 100%;
    left: 50%;
    translate: -50% 0%;
  }
}
.px-imageslider-inner {
  position: relative;
}
.px-imageslider.slider-inactive {
  max-width: var(--baseWidth);
  width: var(--maxWidth);
}
.px-imageslider.slider-inactive .splide__arrows {
  display: none;
}
@media screen and (max-width: 1400px) {
  .px-imageslider.slider-inactive.layoutLogo {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 768px) {
  .px-imageslider.slider-inactive .px-imageslider-inner .images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    justify-content: center;
  }
  .px-imageslider.slider-inactive .px-imageslider-inner .images .splide__slide .image img {
    min-height: 40px;
  }
}
.px-imageslider-inner {
  max-width: var(--maxWidthSmall);
  margin: 0 auto;
}
.px-imageslider-inner .splide__slide .image {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.px-imageslider-inner .splide__slide .image img {
  max-width: 100%;
  object-fit: contain;
  max-height: 90px;
  min-height: 90px;
  width: auto;
}
.px-imageslider.layoutLogo .splide__slide .image {
  max-width: 200px;
  margin: 0 auto;
}
.px-imageslider.layoutImages .images .splide__slide .image img {
  max-height: 350px;
  min-height: 350px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .px-imageslider.layoutImages .images .splide__slide .image img {
    max-height: 250px;
    min-height: 250px;
  }
}
@media screen and (max-width: 1400px) {
  .px-imageslider.layoutImages .slick-navigation .button-wrap {
    display: none;
  }
}
.px-imageslider .splide__arrows {
  bottom: -10px;
  translate: 0 0;
  position: absolute;
  left: 50%;
}
.px-imageslider .splide__arrows .button-wrap {
  height: 100%;
}
.px-imageslider .splide__arrows .button-wrap .splide__arrow {
  display: flex;
  padding: 20px;
  border-radius: 50px;
  background: #FFF;
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
  justify-content: center;
  align-items: center;
}
.px-imageslider .splide__arrows .button-wrap .splide__arrow span {
  transition: var(--baseTransition);
  color: rgba(255, 0, 0, 0);
  display: block;
  height: 20px;
  width: 20px;
  background-color: black;
  mask-image: url(../../img/arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  transform: rotateZ(180deg);
}
.px-imageslider .splide__arrows .button-wrap .splide__arrow.prev span {
  transform: rotateZ(0deg);
}
.px-imageslider .splide__arrows .button-wrap .splide__arrow:hover span {
  background-color: var(--mainColor);
}
