.item-image-slider__container {
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 15px;
}
.item-image-slider__slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    padding: 7px;
}

.item-image-slider__slide_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: 7px;
    height: 7px;
    background-color: var(--menu-background-color);
    border-radius: 50%;
    margin-right: 3px;
}
.item-image-slider__dot_active { 
    background-color: var(--accent-color);
}
