.MYUI-CarouselItem__in {
  height: inherit;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  -webkit-filter: drop-shadow(0px 0px 20px black) blur(20px);
  filter: drop-shadow(0px 0px 20px black) blur(20px);
}

.MYUI-CarouselItem__in--custom {
  height: inherit;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.MYUI-CarouselItem {
  position: relative;
  overflow: hidden;
}


.MYUI-CarouselItem {
  height: 100%;
  width: 100%;

  transition-property: width, height, margin;
  transition-duration: var(--transition_time);
}

.MYUI-CarouselItem__content {
  position: absolute;
  padding: var(--margin_default);
  z-index: 10;
  bottom: 0;
  width: calc(100% - var(--margin_default) * 2);

  display: flex;
  justify-content: center;
  text-align: center;
}

.MYUI-CarouselItem__children {
  color: var(--text_primary);
  font-size: var(--font_size_optimaze);
  width: max-content;
  border-radius: var(--border_radius_optimaze);
  padding: var(--padding_low) var(--padding_default);
  background: rgba(var(--background_primary));
}


.MYUI-CarouselItem__image {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;

  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.MYUI-CarouselItem__image img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}