.secAQR_Wheel {
    width: 100px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    user-select: none;
    direction: rtl;
    text-align: center;
}

.secAQR_Wheel .AQR_Wheel-list {
    position: absolute;
    top: 0;
    width: 100%;
    transition: top 0.3s ease;
    z-index: 1;
}

.AQR_Wheel-item {
    font-size: 0.9rem;
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.3s ease;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .AQR_Wheel-item.selected {
        font-weight: bold;
        opacity: 1;
        transform: scale(1.1);
    }

.AQR_Wheel-mask {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    height: 40px;
    width: 100%;
    background-color: #f5f5f5;
    pointer-events: none;
    border-radius: 8px;
}

.AQR_Wheel-input {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border: none;
    z-index: 3;
    background: #fbfbfb;
    outline: none;
    display: none;
}