.root {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    will-change: transform;
}

.content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    will-change: transform;
    padding: 8px 0;
}

.root[data-manual-scroll="true"] {
    cursor: grab;
    user-select: none;
}

.root[data-manual-scroll="true"]:active {
    cursor: grabbing;
}

.root[data-manual-scroll="true"] .item {
    pointer-events: auto;
}

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