/* Wrapper fix */
.quantity {
    display: inline-flex !important;
    align-items: stretch;
    border: 1px solid #e2e2e2;
    border-radius: 2px;
    height: 40px;
    background: #fff;
    overflow: hidden;
}

/* Buttons */
.quantity .raz-plus,
.quantity .raz-minus {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: 0.2s;
    padding: 0;
}

.quantity .raz-plus:hover,
.quantity .raz-minus:hover {
    background: #f9f9f9;
    color: #000;
}

/* Input */
.quantity input.qty {
    width: 45px;
    border: none;
    border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #3a3a3a;
    outline: none;
}

/* Remove arrows */
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity input {
    -moz-appearance: textfield;
    appearance: none;
}

/* SVG */
.quantity button svg {
    width: 12px;
    height: 12px;
    stroke-width: 2.5px;
}