.quantity-editor
{
    display: flex;
    border: 1px solid var(--default-border-color-active);
    width: 120px;
}
.quantity-editor.disabled
{
    border-color: #e9ecef;
}

.quantity-editor input
{
    display: inline-block;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
    border: none;
    border-radius: 0px;
    color: var(--text-muted-color);
    font-weight: 600;
    background-color: var(--default-background-color);
    height: 100%;
    min-width: 0;
    -moz-appearance: textfield;
}
.quantity-editor input:focus
{
    outline: none;
    box-shadow: none;
    background-color: inherit;
}
.quantity-editor input::-webkit-inner-spin-button
{
    -webkit-appearance: none;
}

.quantity-editor button
{
    display: inline-block;
    background-color: var(--default-background-color);
    border: none;
    color: var(--text-muted-color);
    font-weight: normal;
    padding-left: 10px;
    padding-right: 10px;
    min-height: 100%;
    transition: 0.3s ease all !important;
}
.quantity-editor button:not(:disabled):not(.disabled)
{
    cursor:pointer
}
.quantity-editor button.disabled,
.quantity-editor button:disabled
{
    color: #dddddd;
    background-color: #e9ecef;
}

.quantity-editor.xs
{
    width: 90px;
}

.quantity-editor.xxs
{
    width: 85px;
}
.quantity-editor.xxs input
{
    padding: 2px 0;
}

@media (hover: hover) and (pointer: fine)
{
    .quantity-editor button:not(:disabled):not(.disabled):hover
    {
        background-color: var(--default-background-color-active);
        color: #000000;
        cursor: pointer;
    }
}
