.wheel {
    display: inline-block;
    width: 100%;
    height: calc(var(--wheel-height) * 5);
    position: relative;
    text-align: center;
}

.wheel-cursor,
.wheel-shadow {
    pointer-events: none;
    position: absolute;
    left: 0;
    width: 100%;
}

.wheel-cursor {
    top: 50%;
    margin-top: calc(var(--wheel-height) / -2);
    height: var(--wheel-height);
    background: rgba(183, 248, 3, 0.3);
}

.wheel-shadow {
    height: calc(var(--wheel-height) * 2);
}

.wheel-shadow-top {
    top: 0;
    background: linear-gradient(0deg, rgba(241, 237, 231, 0.3) 0%, rgba(241, 237, 231, 0.8) 50%, rgba(241, 237, 231, 1) 100%);
}

.wheel-shadow-bottom {
    bottom: 0;
    background: linear-gradient(180deg, rgba(241, 237, 231, 0.3) 0%, rgba(241, 237, 231, 0.8) 50%, rgba(241, 237, 231, 1) 100%);
}

.wheel-items {
    display: block;
    width: 100%;
    height: 100%;
    /*border: 1px solid green;*/
    overflow-y: scroll;
    scrollbar-width: none;
    scroll-snap-type: y mandatory;
}

.dragging {
    scroll-snap-type: none;
}

.wheel-item {
    scroll-snap-align: center;
    height: var(--wheel-height);
    line-height: var(--wheel-height);
    font-size: var(--wheel-height);
    /*border: 1px solid blue;*/
}

.wheel-spacer {
    height: var(--wheel-height);
}