/****************************
 * Quantity
*****************************/
/* Default quantity style for cart page */
.quantity.hidden {display:none !important;}
.quantity {
    display:flex; align-items:center; background:#fff;
    border:1px solid var(--vii-color-primary); border-radius:4px;
    height:36px; width:80px; overflow:hidden;
}
.quantity .quantity-button {
    text-decoration:none; width:35%; height:100%; font-size:10px; font-weight:500;
    display:flex; align-items:center; justify-content:center;
    color:#000; background:rgba(0, 0, 0, 0);
}
.quantity .quantity-button:hover {background:var(--vii-color-primary); color:#fff;}
.quantity .qty {
    width:30%; height:100%;
    text-align:center; font-size:var(--vii-size-body);
    background:transparent;
}

/* Product quantity > hide number arrows */
.quantity .qty::-webkit-outer-spin-button,
.quantity .qty::-webkit-inner-spin-button {-webkit-appearance:none; margin:0;}
.quantity .qty {-moz-appearance:textfield;}

/* Disabled quantity button when the value reaches min/max value */
.quantity .quantity-button:disabled {opacity:0.3; pointer-events:none;}