﻿
.wheel-picker {
    display: inline-grid;
    border-radius: 15px;
    position: relative;
    font-size: calc(.6rem + 2.4vw);
    position: relative;
    font-feature-settings: "tnum";
    font-weight: 400;
    color: var( --wheelColor);
    width: 100%
}

    .wheel-picker:before, .wheel-picker:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1.6em;
        pointer-events: none;
    }

    .wheel-picker ul {
        -ms-overflow-style: none;
        margin-bottom: 0;
        margin-top: 0;
        overflow-y: scroll;
        width: 100%;
        -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
        padding-bottom: 3em;
    }

        .wheel-picker ul::-webkit-scrollbar {
            display: none;
        }

    .wheel-picker li {
        scroll-snap-align: center;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: row;
        align-items: center;
        vertical-align: middle;
        word-spacing: 0.2em;
    }

.wheel-picker-day {
    height: 206px;
    padding-right: 0.5em;
}

    .wheel-picker-day span {
        padding-left: 0.56em;
    }

.scroll-item {
    border-top: none;
    border-bottom: none;
    font-weight: normal;
    font-size: calc(.5rem + 2.4vw);
    transition: all .1s ease-in-out;
}

    .scroll-item.active {
        font-weight: bold;
        transform: scale(1.2);
    }

.scroll-item-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center
}
