/* -- quantity box -- */

.quantity {
 display: inline-block; }
.quantity .input-text.qty {
    width: 30px;
    height: 30px;
    background: #eda22f;
    position: relative;
    padding: 3px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    border: none;
    border-radius: 3px 0px 0px 3px;
    top: -2px;
}

.quantity.buttons_added {
 text-align: left;
 position: relative;
 white-space: nowrap;
 vertical-align: top; }

.quantity.buttons_added input {
 display: inline-block;
 margin: 0;
 vertical-align: top;
 box-shadow: none;
}

.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
 line-height:30px;    
 height: 30px;
 width:30px;
 background: #eda22f;
 border: 1px solid #eda22f;
 color:#fff;
 cursor:pointer;}

.quantity.buttons_added .minus {
 border-right: 0; }

.quantity.buttons_added .plus {
 border-left: 0; }

.quantity.buttons_added .minus:hover,
.quantity.buttons_added .plus:hover {
 background: #eda22f;}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
 -webkit-appearance: none;
 -moz-appearance: none;
 margin: 0; }
 
 .quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
 outline: none; }

