/* Minimal Swiper layout required by Marriwe Elementor carousel widgets. */
.swiper,
.swiper-container {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    z-index: 1;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    box-sizing: content-box;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}
.swiper-slide {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    transition-property: transform;
}
.swiper-button-lock,
.swiper-pagination-lock,
.swiper-scrollbar-lock {
    display: none !important;
}
.swiper-pagination {
    position: relative;
    z-index: 10;
}
.swiper-pagination-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: .25;
    cursor: pointer;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
.swiper-scrollbar {
    position: relative;
    height: 4px;
    background: rgba(0, 0, 0, .1);
}
.swiper-scrollbar-drag {
    height: 100%;
    background: rgba(0, 0, 0, .45);
}
