
.stepper {
    overflow: hidden;
    position: relative;
    width: 97px
}

.stepper .stepper-input {
    background-color: #363636;
    color: #bfbfbf;
    margin: 0;
    overflow: hidden;
    padding: 0 10px 0 19px;
    width: 100%;
    z-index: 49;
    -moz-appearance: textfield;
    height: 40px;
    font-size: 15px;
}

.stepper .stepper-input::-webkit-inner-spin-button,
.stepper .stepper-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.stepper .stepper-arrow {
    background: url('../images/steper-arrows.png') no-repeat center;
    background-color: #363636;
    cursor: pointer;
    display: block;
    height: 50%;
    position: absolute;
    text-indent: -99999px;
    width: 30px;
    right: 0;
    z-index: 50;
    border: 1px solid currentColor;
}

.stepper .stepper-arrow:hover{
	background-color: #4d4d4d;
}

.stepper .stepper-arrow.up {
    background-position: center 7px;
    border-bottom: none;
    top: 0;
}

.stepper .stepper-arrow.down {
    background-position: center -14px;
    bottom: 0;
}