.wbk_quantityFields {
    display: flex;
    flex-direction: column;
    width: 100%;

    &__title {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #22292f;
        margin: 0;
    }

    &__list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 0;
        padding: 0 !important;
        list-style: none;
    }

    &__row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    &__label {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #666666;
        flex: 1;
        min-width: 0;
    }

    &__controls {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        user-select: none;
    }

    &__button {
        width: 28px;
        min-width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #d4dde2;
        border-radius: 50%;
        cursor: pointer;
        background-color: #ffffff;
        padding: 0;
        color: #668091;
        font-size: 14px;
        line-height: 1;

        &:hover:not(:disabled) {
            border-color: #668091;
        }

        &:disabled {
            cursor: not-allowed;
            opacity: 0.45;
        }

        &:focus-visible {
            outline: 2px solid #22292f;
            outline-offset: 2px;
        }
    }

    &__input {
        width: 56px;
        height: 32px;
        border: 1px solid #d4dde2 !important;
        border-radius: 4px !important;
        text-align: center;
        outline: none !important;
        box-shadow: none !important;
        background-color: #ffffff !important;
        font-size: 14px;
        color: #22292f !important;
        margin: 0 !important;
        padding: 0 !important;

        &--error {
            border-color: red !important;
        }
    }

    &__error {
        font-size: 14px;
        font-weight: 300;
        line-height: 24px;
        color: red;
        margin: 0;
    }

    @media screen and (max-width: 768px) {
        &__row {
            flex-direction: column;
            align-items: flex-start;
        }

        &__controls {
            align-self: flex-end;
        }
    }
}