.sxs-qpckr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    padding: .25rem;
    font-size: $text-18;

    &__amt {
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    &__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        height: var(--buttonSize);
        width: var(--buttonSize);
        font-size: .5em;
        font-weight: 700;
        line-height: 1;
        color: $duller;
        border-radius: 50%;
    }

    &--v1 {
        border-radius: 3px;
        border: 1px solid $duller;
        --buttonSize: calc(22px + .5rem);

        .sxs-qpckr {
            &__amt {
                width: 2.5ch;

                @include xs-wmin {
                    width: 4ch;
                    --buttonSize: calc(25px + .5rem);
                }
            }

            &__btn {
                &::before {
                    content: "";
                    position: absolute;
                    z-index: -1;
                    width: 100%;
                    height: 100%;
                    background-color: $accentClear2;
                    border-radius: 50%;
                    transform: scale(0);
                    transition: transform 200ms;
                }

                &:active:before {
                    transform: scale(1);
                }

                &:focus-visible {
                    outline: 1px solid $primaryClear;
                    outline-offset: 1px;
                }
            }
        }
    }

    &--v2 {
        --buttonSize: calc(14px + .5rem);

        .sxs-qpckr {
            &__amt {
                padding: 0 .75ch;
                max-width: 4ch;
            }

            &__btn {
                background-color: $primaryClear;
            }
        }
    }
}