.woocommerce .product .cart .quantity-product-wrapper .quantity {
    float: none;
    margin-right: 0;
}

.quantity-product-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.quantity-product-wrapper .label-quantity {
    font-size: 14px;
    margin-bottom: 10px;
}

.quantity .screen-reader-text {
    display: none;
}

.quantity-input {
    position: relative;
    width: 100%;
}

.quantity-input .quantity {
    width: 100%;
    height: 100%;
}

.quantity-input input.qty {
    -moz-appearance: textfield;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #acb9c5;
    height: 100%;
    font-family: "Helvetica", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #acb9c5;
}

.quantity-input:hover input.qty {
    color: #000;
}

.quantity-input input.qty::-webkit-outer-spin-button,
.quantity-input input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input .qty-action {
    position: absolute;
    right: 0;
    z-index: 3;
    width: 40px;
    height: 50%;
    font-size: 0;
    background: url(../images/icons/icon-arrow-chevronblack-down.svg) center/10px 7px no-repeat;
}

.quantity-input .qty-action.qty-action--plus {
    top: 0;
    background-position: 80% 4px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.quantity-input .qty-action.qty-action--minus {
    bottom: 0;
    background-position: 20% 4px;
}

.quantity-input .suffix-quantity {
    position: absolute;
    top: 24px;
    left: 35px;
    -webkit-transform: translateX(1ch);
    -moz-transform: translateX(1ch);
    -ms-transform: translateX(1ch);
    -o-transform: translateX(1ch);
    transform: translateX(1ch);
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 900;
    pointer-events: none;
}


@media all and (min-width: 601px) {
    .quantity-input input.qty {
        padding: 29px 16px 29px 28px;
    }
}


@media all and (max-width: 600px) {
    .quantity-input input.qty {
        padding: 24px 15px;
    }
}