.dm-swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-swiper .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity 0.3s;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    bottom: -40px !important; /* Positioning at the bottom */
    width: 100%;
}

.swiper-container.dm-swiper {
    --bullet-color: #333333;
; /* Default bullet color */
    --bullet-active-color: #333333 ; /* Default active bullet color */
}

.swiper-container.dm-swiper .swiper-pagination-bullet {
    background-color: var(--bullet-color);
    opacity: 1;
    transition: background-color 0.3s, opacity 0.3s;
}

.swiper-container.dm-swiper .swiper-pagination-bullet-active {
    background-color: var(--bullet-active-color);
    opacity: 1;
}



.swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    margin: 0 5px;
    background: #333333 !important;
    opacity: 1;
    border-radius: 50%;
    display: inline-block;
    transition: opacity 0.3s;
}

.swiper-pagination-bullet-active {
    width: 18px !important; /* Adjust width to make it a dash */
    height: 6px !important;
    background: #333333 !important;
    opacity: 1;
    border-radius: 5px; /* Adjust border-radius to make it a dash */
    border-radius: 999px !important;
}