.item-image-slider__container {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0;
}
.item-image-slider__img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: all 0.2s ease-in;
  top: 0;
  left: 0;
  padding: 0 0 1rem 0;
  display: block;
}

.item-image-slider__img:first-child {
  position: relative;
  height: 100%;
}

.item-image-slider__img_active {
  opacity: 1;
  z-index: 1;
}

.item-image-slider__dots {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.item-image-slider__dot {
  width: 100%;
  height: 1px;
  background-color: var(--color-bg-menu);
  margin: 0 0.35rem;
}

.item-image-slider__dot:first-of-type {
  margin-left: 0;
}
.item-image-slider__dot:last-of-type {
  margin-right: 0;
}
.item-image-slider__dot_active {
  background-color: var(--color-accent);
}
