/* Styles go here */

.ui-stepper{
  position:relative;
}

.stepper-bt{
  position:absolute;
  right:0;
  height:15px;
  border:#ccc 1px solid;
  font-size:.8em;
  background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fff), to(#e6e6e6)); // Safari 4+, Chrome 2+
  background-image: -webkit-linear-gradient(top, #fff, 0%, #e6e6e6, 100%); // Safari 5.1+, Chrome 10+
  background-image:  -moz-linear-gradient(top, #fff 0%, #e6e6e6 100%); // FF 3.6+
  background-image: linear-gradient(to bottom, #fff 0%, #e6e6e6 100%); // Standard, IE10
  background-repeat: repeat-x;

  display: inline-block;
  padding: 0 .5em;
  margin-right:-3px;
}

.stepper-bt:hover{
  background: #dedede;
  background-image: none;
}
.stepper-bt:active{
  background: #efefef;
  background-image: none;
}

.stepper-bt__up{
  top:0;
  border-top-right-radius: 3px;
  z-index: 9999;
}
.stepper-bt__up .caret{
  position:relative;
  top:-2px;
}
.stepper-bt__down{
  border-bottom-right-radius: 3px;
  bottom:0;
  z-index: 9999;
}


.stepper-bt[disabled]{
  background: #eee;
  background-image: none;
}
.stepper-bt[disabled] .caret{
  opacity:.3;
}