/**
 * TMDER Üyeler Ticker CSS
 * Swiper Ticker (Lineer kayma) Animasyonu İçin Easing Geçersiz Kılma
 */

.optimal-tmder-swiper-ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

/* 
 * Continuous linear loop effect for ticker
 * We need smooth transitioning! 
 */
.optimal-tmder-swiper-ticker .swiper-wrapper {
    -webkit-transition-timing-function: linear !important; 
    transition-timing-function: linear !important; 
}

.optimal-ticker-slide {
    width: auto !important; /* Slide width will be decided by image/content */
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.optimal-ticker-slide img {
    display: block;
    width: auto;
    max-height: 60px; /* Sizin varsayılan The7 logo boyutunuz */
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.optimal-ticker-slide img:hover {
    filter: grayscale(10%);
}
