/* Logo Marquee Slashto - Style */

.lms-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* ---- HORIZONTAL ---- */
.lms-horizontal .lms-track {
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
    /* width set by JS */
}

/* ---- VERTICAL ---- */
.lms-vertical {
    height: var(--lms-vertical-height, 400px);
}

.lms-vertical .lms-track {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

/* ---- ITEM ---- */
.lms-item {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
}

.lms-item img {
    max-width: 100%;
    display: inline-block;
    object-fit: contain;
    object-position: center;
    transition: filter 0.3s ease;
}

/* ---- TITLE ---- */
.lms-item-title {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
}

/* ---- LINK ---- */
.lms-item-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* ---- BADGE ---- */
.lms-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
    padding: 10px;
    border-radius: 3px;
    background-color: #4054b2;
    color: #fff;
}

/* ---- PAUSE ON HOVER ---- */
.lms-wrapper.lms-pause-hover:hover .lms-track {
    animation-play-state: paused !important;
}
