.elementor-354 .elementor-element.elementor-element-3f07483f{--display:flex;--background-transition:0.3s;--padding-top:50px;--padding-bottom:50px;--padding-left:20px;--padding-right:20px;}.elementor-354 .elementor-element.elementor-element-204e6fbc{color:var( --e-global-color-secondary );}/* Start custom CSS */.quantity {
    display: flex; /* Use flexbox to layout children */
    align-items: center; /* Align items vertically in the center */
    justify-content: center; /* Align items horizontally in the center */
}

.addify-option-field td input {
    border-left: 1px solid #666 !important;
}

.addify-option-field th {
    font-style: uppercase;
    text-align: center;
}

input[type="number"].qty {
    width: 80px !important; /* Set the desired width */
    text-align: center; /* Center the text inside the input */
}
    body .woocommerce .quantity .qty {
        border-radius: 0px;
        border: 1px solid #68BD6D60; 
    }

    .quantity input.minus,
    .quantity input.plus {
        height: 42px !important;
        padding: 5px 10px;
        border: none;
        font-size: 33px; /* Adjust font-size if necessary */
        background-color: #68BD6D;
        color: white;
        line-height: 32px;
    }
    
    

    .quantity input.plus {
        font-size: 22px; /* Adjust for plus icon */
        border-radius: 0px 5px 5px 0px; /* Rounded corners on the right for plus button */
    }
    
       .quantity input.plus:hover {
        font-size: 22px; /* Adjust for plus icon */
        border-radius: 0px 5px 5px 0px; /* Rounded corners on the right for plus button */
    }

    .quantity input.minus {
        border-radius: 5px 0px 0px 5px; /* Rounded corners on the left for minus button */
    }

.quantity input.minus:hover {
        border-radius: 5px 0px 0px 5px; /* Rounded corners on the left for minus button */
    }


@media screen and (max-width: 1024px) {
    .quantity {
  
    justify-content: end!important;
}
    /* Adjust styles for mobile as needed, similar to the above */
    .quantity input.minus,
    .quantity input.plus {
        /* Same styles as above or modified for smaller screens */
    }
}/* End custom CSS */