.miko-simply-scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

.miko-simply-scroll {
    display: flex;
    align-items: center;
    gap: 20px;
    will-change: transform;
    animation: lp-scrolling 30s linear infinite;
}

.miko-simply-scroll span {
    flex-shrink: 0;
    max-width: 152px;
    text-align: center;
    height: 80px;
}

.miko-simply-scroll span a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.miko-simply-scroll-wrapper .miko-simply-scroll img {
    max-height: max-content;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.miko-simply-scroll-wrapper:hover .miko-simply-scroll {
    animation-play-state: paused;
}

@keyframes lp-scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(var(--scroll-end));
    }
}