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

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

.item-image-slider__dots {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.item-image-slider__dot {
    width: 100%;
    height: 1px;
    background-color: var(--menu-background-color);
    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(--accent-color);
}