.slideshow-container {
    overflow: hidden;
    margin: 0px auto;
    position: relative;
}
.slideshow-list {
    display: none;
    align-items: center;
    justify-content: flex-start;
}
.slideshow-item {
    overflow: hidden;
}
.slideshow-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pointer-bar {
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    margin-bottom: 12px;
}
.pointer-item {
    height: 12px;
    width: 12px;
    border-radius: 4px;
    background-color: rgb(221,221,221);
    margin: 0 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.pointer-item.selected-pointer {
    background-color: rgb(16,136,242);
}