.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;
    padding: 16px 40px 20px 24px;
    background-color: #f0f0f0;
    border: #f0f0f0;
    height: 100%;
}

.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: 2;
    width: 40px;
    height: 50%;
    font-size: 0;
    background: url(/wp-content/themes/philotes/assets/images/icon-arrow-chevrongrey-down.svg) center/10px 6px 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: 15px;
    left: 30px;
    -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;
}