.number-style input{
    display: inline-block;
    width: 70px;
    min-width: 70px;
    vertical-align: middle;
    text-align: center;
    border: none;
    font-size: 15px;
    color: #000000;
    font-weight: 500;
    font-size: 35px;
    background: transparent;
}

.number-style span{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}

.number-style span.number-minus, .number-style span.number-minus.disabled{
    background: transparent;
    color: #808793;
    border: 0;
    border: 1px solid #00468A;
}

.number-style span.number-minus::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -1px 0 0 -7px;
    width: 14px;
    height: 2px;
    border: 1px solid #00468A;
}

.number-style span.number-plus{
    background: #00468A;
    color: #FFF;
    border: 0;
}

.number-style span.number-plus::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px 0 0 -7px;
    width: 14px;
    height: 2px;
    background-color: #FFF;
}

.number-style span.number-plus::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -7px 0 0 -1px;
    width: 2px;
    height: 14px;
    background-color: #FFF;
}

.number-style span.disabled{
    background: #f5f6f8;
    color: #808793;
    border: 0;
}

.number-style span.disabled::after,
.number-style span.disabled::before{
    background-color: #808793;

}

.number-style input[type='number'] {
    -moz-appearance:textfield;
}

.number-style input::-webkit-outer-spin-button,
.number-style input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.numberspinner:focus-visible{
    outline: none;
}

#mostrarproductosextra .number-style input {
    width: 40px;
    font-size: 22px;
}
#mostrarproductosextra .number-style span{
    width: 20px;
    height: 20px;
    margin: 0 2px;
}
#mostrarproductosextra .number-style span.number-minus::after{
    margin: -1px 0 0 -5px;
    width: 11px;
    height: 2px;
}