
.mini-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
}

.mini-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.mySwiper2 {
    height: 90%;
    width: 100%;
}

.mySwiper {
    height: 10%;
    box-sizing: border-box;
    position: relative;
    /* Hide native scrollbar on the outer container */
    overflow: hidden;
    --thumb-count: 1;
    /* Computed in JS to guard 1:1 min ratio */
    --thumb-min-width: 48px;
}

.mySwiper .mini-slide {
    /* Fit all thumbs by default */
    width: calc(100% / var(--thumb-count));
    /* Guard: never shrink narrower than square */
    min-width: var(--thumb-min-width);
    height: 100%;
    opacity: 0.2;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.mini-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-slide::before {
    background: none !important;
}

.wrapper {
    height: 100%;
}

.wrapper .carousel {
    font-size: 0px;
    cursor: pointer;
    /* Make inner carousel the scroll container and hide its scrollbar cross-browser */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none;    /* Firefox */
}
.wrapper .carousel::-webkit-scrollbar { /* Chrome/Safari */
    display: none;
}

.carousel.dragging {
    cursor: grab;
    scroll-behavior: auto;
}

.carousel.dragging img {
    pointer-events: none;
}

@media screen and (max-width: 800px) {

    .mini-slide {
        padding: 0;
        border: black 1px;
    }
}

@media (max-aspect-ratio: 3/4) {
    .mini-slide {
        height: 20vh !important;
    }
}
