.ui-stepper {
    overflow: hidden;
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    width: 94px;
    height: 29px;
    border: 1px solid rgb(255, 155, 52);
    border-radius: 4px;
    color: rgb(255, 155, 52);
}
.ui-stepper-dec-btn {
    flex: 1;

    height: 100%;
    line-height: 100%;
    color: inherit;
}
.ui-stepper-dec-btn.ui-dis {
    background: rgba(0,0,0,0.11);
}

.ui-stepper-inc-btn {
    flex: 1;

    height: 100%;
    border-left: 1px solid;
    border-color: inherit;
    line-height: 100%;
    color: inherit;
}
.ui-stepper-inc-btn.ui-dis {
    background: rgba(0,0,0,0.1);
}
.ui-stepper-value-label {
    flex: 0 1 auto;

    width: auto;
    text-align: center;
}