:root {
    --swiper-theme-color: #fff;
    --swiper-navigation-size: 30px;
}

/* Wrapper Context */
/* Wrapper Context */
.vmv-slider-wrapper {
    position: relative;
    width: 100%;
    /* Default boxed behavior */
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

/* TRUE FULL WIDTH BREAKOUT UTILITY */
.vmv-slider-wrapper.vmv-breakout {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw !important;
    /* Force override theme constraints */
}

.swiper {
    width: 100%;
    /* height: 100%; Removed for autoHeight */
    background-color: transparent;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.vmv-img-contain {
    object-fit: contain;
}

.vmv-img-cover {
    object-fit: cover;
    height: 100% !important;
    /* Cover needs to fill height */
}

/* Custom Nav overrides */
/* Custom Nav overrides */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
    width: 40px;
    height: 100%;
    top: 0;
    margin-top: 0;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.1);
}

.swiper-pagination-bullet-active {
    background: #333;
}