.add_cart_block .qtyBlock {
    align-items: center;
    position: relative;
    display: flex;
    margin-bottom: 10px;
}
.add_cart_block .qtyBlock .qty-cart-price {
    position: absolute;
    left: 62px;
    top: -21px;
    width: 103px;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    color: #717171;
}

.add_cart_block .qtyBlock .qty {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    margin: 0 2px;
    height: 19px;
    width: 40px;
    padding: 0 2px;
    border: 0;
}

.add_cart_block .qtyBlock .qty {
    background-color: #e7e8ea;
    color: #000000;
}

.add_cart_block .qtyBlock .qty.error {
    border: 1px solid #ff0000;
}

.add_cart_block .qtyBlock .plus,
.add_cart_block .qtyBlock .minus {
    vertical-align: middle;
    display: inline-block;
    height: 19px;
    width: 19px;
}

.add_cart_block .qtyBlock .plus,
.add_cart_block .qtyBlock .minus {
    background: url(images/plusMinusElement.png) 0 0 no-repeat #424242;
}

.add_cart_block .qtyBlock .plus {
    background-position: 0 -19px;
}

.add_cart_block .qtyBlock .plus:hover {
    background-position: -19px -19px;
}

.add_cart_block .qtyBlock .plus:active {
    background-position: -38px -19px;
}

.add_cart_block .qtyBlock .minus:hover {
    background-position: -19px 0x;
}

.add_cart_block .qtyBlock .minus:active {
    background-position: -38px 0px;
}

#catalogTableList .add_cart_block .qtyBlock label {
    padding-right: 12px;
    margin-top: 5px;
}

@media (max-width: 480px) {
    .add_cart_block .qtyBlock {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    #catalogTableList .column {
        width: 100%;
    }
}