.woocommerce div.product form.cart div.quantity.spinners-added {
    border-radius: 100px;
    padding: 10px 16px;
    flex: 0 0 auto;
    margin-right: 2rem;
}

input.input-text.qty.text {
    font-weight: 700;
    font-size: 16px;
}

form.cart {
    display: flex;
    justify-content: flex-start;
    row-gap: 12px;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 1.5rem;
}

.woocommerce div.product form.cart .button.single_add_to_cart_button {
    position: relative;
    font-weight: 600;
    font-size: 14px;
    flex: 1 1 auto;
    padding: 10px 20px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.woocommerce div.product form.cart .button.single_add_to_cart_button::before {
    content: "";
    width: 1.5em;
    height: 1.5em;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("css-icons/cart-plus-solid-full.svg");
    transition: all 0.3s;
    filter: brightness(0) invert(1);
    display: inline-block;
    margin-right: 0.5em;
}