/* 1. Reset: Hide all by default */
.the_3m_new_tiles_carousel--desktop,
.the_3m_new_tiles_carousel--tablet,
.the_3m_new_tiles_carousel--mobile {
    display: none !important;
}

/* 2. Show based on resolution */
@media (min-width: 992px) { 
    .the_3m_new_tiles_carousel--desktop { display: block !important; } 
}
@media (min-width: 768px) and (max-width: 991px) { 
    .the_3m_new_tiles_carousel--tablet { display: block !important; } 
}
@media (max-width: 767px) { 
    .the_3m_new_tiles_carousel--mobile { display: block !important; } 
}

/* 3. Indicators (Dots) styling and positioning */
.the_3m_new_tiles_carousel .responsive-carousel {
    padding-bottom: 60px; /* Space for dots */
    position: relative;
    overflow: visible; /* Ensure dots aren't cut off */
}

.the_3m_new_tiles_carousel .carousel-indicators {
    position: absolute;
    bottom: -40px; /* Push dots below the content */
    left: 0;
    width: 100%;
    margin-left: 0;
    text-align: center;
    z-index: 10;
}

.the_3m_new_tiles_carousel .carousel-indicators li {
    display: inline-block;
    border: 1px solid #333;
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.the_3m_new_tiles_carousel .carousel-indicators .active {
    background-color: #333;
    width: 10px;
    height: 10px;
    margin: 0 5px;
}