/* -- quantity box -- */

.quantity {
 display: inline-block; }

.quantity .input-text.qty {
    width: 42px;
    height: 39px;
    padding: 0 2px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #efefef;
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity.buttons_added {
    text-align: left;
    position: relative;
    white-space: nowrap;
    vertical-align: top;
    margin-bottom: 0;
}

.quantity.buttons_added input {
 display: inline-block;
 margin: 0;
 vertical-align: top;
 box-shadow: none;
}

.quantity.buttons_added .minus, .quantity.buttons_added .plus {
    padding: 4px 10px 4px;
    height: 36px;
    background-color: #ffffff;
    border: 1px solid #efefef;
    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: #eeeeee; }

.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; }

