.swiper {
    display: block;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    box-sizing: content-box;
    display: flex;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%;
    z-index: 1;
}

.swiper-slide {
    display: block;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%;
}

.swiper-pagination {
    left: 0;
    position: absolute;
    text-align: center;
    transition: opacity 0.2s ease;
    width: 100%;
    z-index: 10;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 10px;
}

.swiper-pagination-bullet {
    background: currentColor;
    border-radius: 999px;
    display: inline-block;
    height: 8px;
    margin: 0 4px;
    opacity: 0.25;
    width: 8px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Dynamic bullets: keep large galleries to a single compact row. */
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
    white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    position: relative;
    transform: scale(0.33);
    transition: 200ms transform, 200ms left;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
}

.swiper-button-prev,
.swiper-button-next {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    margin-top: -22px;
    position: absolute;
    top: 50%;
    width: 44px;
    z-index: 10;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

/* Swiper injects the same chevron SVG into both buttons; flip the prev one. */
.swiper-button-prev .swiper-navigation-icon {
    transform: rotate(180deg);
}

.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
}
