.nb-scroll-gallery {
    position: relative;
    display: flex;
}
.nb-scroll-gallery[data-flickering="1"] {
    opacity: 0;
}
.nb-scroll-gallery__map {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: fit-content;
}
.nb-scroll-gallery__preview{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.nb-scroll-gallery__images {
    position: relative;
    top: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.nb-scroll-gallery__image {
    position: relative;
    overflow: hidden;
}
.nb-scroll-gallery__thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;

    transition: all var(--active-duration) var(--active-easing);
}
.nb-scroll-gallery__thumbnail--active {
    transform: scale(var(--active-scale));

    opacity: 1 !important;
    z-index: 10000;
}
.nb-scroll-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}