/* Wrapper controls size */
.rental-gallery-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Stack items on top of each other */
.gallery-scroll {
    position: relative;
}

/* Each slide */
.gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    flex: 0 0 100%;
    height: 100%;
    max-width: 800px;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

/* Active slide */
.gallery-item.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: fit-content;
    display: block;
}

/* Controls */
.gallery-controls {
    text-align: center;
    margin-top: 10px;

    display: flex;
    flex-direction: row;
    justify-content: center;
}