/* Disable manual typing look */
input.qty[readonly] {
    background: #f9f9f9;
    cursor: not-allowed;
}

/* Quantity container */
.quantity {
    display: flex;
    align-items: center;
}

/* Plus minus buttons */
.quantity .plus,
.quantity .minus {

    background: #222;
    color: #fff;

    width: 34px;
    height: 34px;

    border: none;
    cursor: pointer;

    font-size: 16px;
    font-weight: bold;

    display: flex;
    align-items: center;
    justify-content: center;

}

/* Quantity input */
.quantity input.qty {

    width: 70px;
    text-align: center;

}

/* Hover effect */

.quantity .plus:hover,
.quantity .minus:hover {

    background: #000;

}