.elementor-6632 .elementor-element.elementor-element-207bb0b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6632 .elementor-element.elementor-element-b19169d .wcf-embed-checkout-form,
						.elementor-6632 .elementor-element.elementor-element-b19169d .wcf-embed-checkout-form-modern-checkout,
						.cartflows_step-template .select2-container--default .select2-results__option--highlighted[aria-selected],
						.cartflows_step-template .select2-container--default .select2-results__option--highlighted[data-selected]{--wcf-primary-color:var( --e-global-color-cf36aca );}.elementor-6632 .elementor-element.elementor-element-b19169d .wcf-embed-checkout-form.wcf-embed-checkout-form-modern-checkout .woocommerce form .form-row input.input-text:focus,
						.elementor-6632 .elementor-element.elementor-element-b19169d .wcf-embed-checkout-form.wcf-embed-checkout-form-modern-checkout .woocommerce form .form-row textarea:focus,
						.elementor-6632 .elementor-element.elementor-element-b19169d .wcf-embed-checkout-form.wcf-embed-checkout-form-modern-checkout .woocommerce #order_review .wcf-custom-coupon-field input.input-text:focus{box-shadow:var( --e-global-color-cf36aca );}.elementor-6632 .elementor-element.elementor-element-b19169d .wcf-embed-checkout-form-two-step .wcf-embed-checkout-form-steps .step-one.wcf-current:before,
						.elementor-6632 .elementor-element.elementor-element-b19169d .wcf-embed-checkout-form-two-step .wcf-embed-checkout-form-steps .step-two.wcf-current:before{background-color:var( --e-global-color-cf36aca );}.elementor-6632 .elementor-element.elementor-element-b19169d .wcf-embed-checkout-form-two-step .wcf-embed-checkout-form-note:before{border-top-color:var( --e-global-color-cf36aca );}.elementor-6632 .elementor-element.elementor-element-b19169d .wcf-embed-checkout-form-two-step .woocommerce .wcf-embed-checkout-form-nav-btns .wcf-next-button,
						.elementor-6632 .elementor-element.elementor-element-b19169d .wcf-embed-checkout-form-two-step .wcf-embed-checkout-form-note,
						.elementor-6632 .elementor-element.elementor-element-b19169d .wcf-embed-checkout-form .wcf-custom-coupon-field button.wcf-submit-coupon,
						.elementor-6632 .elementor-element.elementor-element-b19169d .wcf-embed-checkout-form .woocommerce #order_review button,
						body .wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-content button.wcf-pre-checkout-offer-btn{background-color:var( --e-global-color-cf36aca );border-color:var( --e-global-color-cf36aca );}/* Start custom CSS for checkout-form, class: .elementor-element-b19169d *//* Hide the default email field */
#billing_email_field {
    display: none !important;
}

/* Ensure the "Your Gmail Address" field is visible */
.woocommerce-billing-fields__field-wrapper #billing_email_field {
    display: block !important;
}

/* Hide the existing headings */
#billing_fields_heading {
    display: none !important;
}
/* Parent container adjustments */
.woocommerce-billing-fields__field-wrapper {
    display: flex; /* Use flexbox for alignment */
    flex-wrap: wrap; /* Allow wrapping if necessary */
    gap: 10px; /* Add some space between the fields */
}

/* Equal width for the input fields */
#billing_first_name,
#billing_email {
    flex: 1 1 100%; /* Make each field take up 48% of the width */
    max-width: 100%; /* Prevent the fields from stretching too wide */
    box-sizing: border-box; /* Include padding and border in the field's width */
}

/* Ensure proper alignment of the parent container */
.woocommerce-billing-fields__field-wrapper > p {
    flex: 1 1 98%; /* Ensure equal space for each container */
    margin: 0; /* Remove unnecessary margins */
}

/* Optional: Adjust spacing */
.woocommerce-billing-fields__field-wrapper input {
    margin: 0; /* Ensure clean alignment */
}
/* Highlight, Blink, and Rounded Corner for Free Gift Text */
span strong {
    background-color: #ff0; /* Yellow background */
    color: #ff0000; /* Red text color */
    padding: 2px 5px; /* Padding around the text */
    font-size: 18px; /* Optional: Change the font size */
    font-weight: bold; /* Optional: Make it bold */
    border-radius: 5px; /* Rounded corners */
    animation: blink 1s infinite; /* Blinking animation */
}

/* Define the blinking animation */
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* Hide the optional text */
#billing_email_field .optional {
    display: none;
}

/* Remove all red borders */
.woocommerce-billing-fields__field-wrapper input,
.woocommerce-billing-fields__field-wrapper input:focus {
    border-color: #ccc !important; /* Default neutral border color */
    box-shadow: none !important; /* Remove focus shadow */
}

/* Remove asterisks for required fields */
.woocommerce-billing-fields__field-wrapper abbr.required {
    display: none !important;
}

/* Remove the optional label */
#billing_email_field .optional {
    display: none !important;
}

/* Prevent error messages from appearing (if applicable) */
.wcf-field-required-error {
    display: none !important;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-207bb0b */.wcf-highlight-head {
    animation: blink 2s infinite;
    font-weight: bold;
    color: red; /* Optional: Customize the color */
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}/* End custom CSS */