

.number-style input{

    display: inline-block;
    width: 30px;
    vertical-align: middle;
    text-align: center;
    border: none;
    font-size: 15px;
    color: #000000;
    cursor: context-menu;
}

.number-style span{
   position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    border-radius: 0;
    margin: 0 10px;
    cursor: pointer;
}

.number-style span.number-minus{
    border: 2px solid #151d31;
        background: #151d31;
}

.number-style span.number-minus::after{

    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -1px 0 0 -5px;
    width: 10px;
    height: 2px;
    background-color: #fff;
}

.number-style span.number-plus{
    border: 2px solid #151d31;
        background: #151d31;
}

.number-style span.number-plus:hover, .number-style span.number-minus:hover{
    border: 2px solid #e40134;
        background: #e40134;
}

.number-style span.number-plus::after{

   content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px 0 0 -5px;
    width: 10px;
    height: 2px;
    background-color: #fff;
}

.number-style span.number-plus::before{

   content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -5px 0 0 -1px;
    width: 2px;
    height: 10px;
    background-color: #fff;
}

.number-style span.disabled{
    border: 2px solid #a4a3a0;
    cursor: no-drop;
    background: #fff;
}

.number-style span.disabled.number-plus:hover,.number-style span.disabled.number-minus:hover {
    background: #fff;
    border: 2px solid #a4a3a0;
}

.number-style span.disabled::after,
.number-style span.disabled::before{

    background-color: #a4a3a0;

}

.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;
}