.product_quantity
{
    width: 182px;
    height: 50px;
    border: solid 1px #e5e5e5;
    border-radius: 5px;
    overflow: hidden;
    padding-left: 25px;
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}
.product_quantity span
{
    display: block;
    height: 50px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0,0,0,0.5);
    line-height: 50px;
    float: left;
}
.product_quantity input
{
    display: block;
    width: 30px;
    height: 50px;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0,0,0,0.5);
    text-align: left;
    padding-left: 9px;
    line-height: 50px;
    float: left;
}
.quantity_buttons
{
    position: absolute;
    top: 0;
    right: 0;
    float: right;
    height: 100%;
    width: 29px !important;
    border-left: solid 1px #e5e5e5;
}
.quantity_inc,
.quantity_dec
{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 50%;
    cursor: pointer;
}
.quantity_control i
{
    font-size: 11px;
    color: rgba(0,0,0,0.3);
    pointer-events: none;
}
.quantity_control:active
{
    border: solid 1px rgba(14, 140, 228, 0.2);
}
.quantity_inc
{
    padding-bottom: 2px;
    justify-content: flex-end;
    border-top-right-radius: 5px;
}
.quantity_dec
{
    padding-top: 2px;
    justify-content: flex-start;
    border-bottom-right-radius: 5px;
}