@media (max-width: 639px) {
  .ids-desktop {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .ids-mobile {
    display: none !important;
  }
}

.ids-carousel ::slotted(.ids-carousel-item-wrapper) {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 100%;
  z-index: 1;
  transition: left 0.5s ease-in-out;
  opacity: 0;
}
.ids-carousel ::slotted(.ids-carousel-item-wrapper.initial),
.ids-carousel ::slotted(.ids-carousel-item-wrapper.active) {
  opacity: 1;
  position: relative;
  z-index: 2;
  left: 0;
  opacity: 1;
}
.ids-carousel ::slotted(.ids-carousel-item-wrapper.prev),
.ids-carousel ::slotted(.ids-carousel-item-wrapper.next) {
  z-index: 2;
  opacity: 1;
}
.ids-carousel .animating-right ::slotted(.ids-carousel-item-wrapper.prev),
.ids-carousel .animating-right ::slotted(.ids-carousel-item-wrapper.next),
.ids-carousel .animating-left ::slotted(.ids-carousel-item-wrapper.prev),
.ids-carousel .animating-left ::slotted(.ids-carousel-item-wrapper.next) {
  z-index: 2;
}
.ids-carousel ::slotted(.ids-carousel-item-wrapper.prev) {
  left: -100%;
}
.ids-carousel ::slotted(.ids-carousel-item-wrapper.next) {
  left: 100%;
}

.ids-carousel-item ::slotted([slot=image]) {
  left: 50%;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}