.elementor-25 .elementor-element.elementor-element-9667b02{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:20px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-25 .elementor-element.elementor-element-9667b02:not(.elementor-motion-effects-element-type-background), .elementor-25 .elementor-element.elementor-element-9667b02 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#313131;}.elementor-25 .elementor-element.elementor-element-398ca95{--display:flex;--border-radius:20px 20px 20px 20px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-25 .elementor-element.elementor-element-fb9e6bf > .elementor-widget-container{background-color:#FFFFFF;padding:10px 30px 30px 30px;border-radius:10px 10px 10px 10px;}.elementor-25 .elementor-element.elementor-element-fb9e6bf img{width:38%;border-radius:20px 20px 20px 20px;}@media(min-width:768px){.elementor-25 .elementor-element.elementor-element-9667b02{--content-width:605px;}}/* Start custom CSS for shortcode, class: .elementor-element-9bf091e *//* Container for the quantity adjuster to ensure everything is aligned nicely */
.cart-quantity-adjuster {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Adjusts the space between elements */
    color: #000;
}

/* Styles for the plus and minus buttons */
.cart-quantity-adjuster .quantity-minus,
.cart-quantity-adjuster .quantity-plus {
    background-color: white; /* White background */
    color: black; /* Black text color */
    border: 2px solid black; /* Adds a black border */
    font-size: 24px; /* Large font size for easy readability */
    padding: 10px 20px; /* Padding around the text */
    cursor: pointer; /* Changes cursor to indicate these are clickable */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}

/* Hover effect for buttons */
.cart-quantity-adjuster .quantity-minus:hover,
.cart-quantity-adjuster .quantity-plus:hover {
    background-color: black; /* Black background on hover */
    color: white; /* White text on hover */
}

/* Styles for the quantity number display */
.cart-quantity-adjuster .quantity-number {
    font-size: 30px; /* Larger font size for the quantity number */
    min-width: 60px; /* Ensures the number does not shift buttons when changing */
    text-align: center; /* Centers the number */
}

/* Optional: Adding some responsiveness if needed */
@media (max-width: 768px) {
    .cart-quantity-adjuster .quantity-minus,
    .cart-quantity-adjuster .quantity-plus {
        padding: 8px 16px;
        font-size: 20px;
    }
    .cart-quantity-adjuster .quantity-number {
        font-size: 24px;
    }
}


.main-ticket-container {
    display: flex;
    flex-direction: row; /* Keeps a horizontal layout */
    justify-content: space-between; /* Ensures space between children */
    align-items: center; /* Centers content vertically */
    background-color: #e7e7e7;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.cart-quantity-adjuster, .cart-title {
    width: 50%; /* Keeps equal width for both sections */
    text-align: center; /* Centers the text horizontally */
    display: flex;
    align-items: center; /* Ensures vertical alignment */
}

.cart-title {
    font-family: var(--e-global-typography-02459a8-font-family), Sans-serif;
    font-size: var(--e-global-typography-02459a8-font-size);
    line-height: var(--e-global-typography-02459a8-line-height);
    letter-spacing: var(--e-global-typography-02459a8-letter-spacing);
    word-spacing: var(--e-global-typography-02459a8-word-spacing);
    color: #000;
    font-weight: 700;
}

.fooevents-attendee {
    padding-bottom: 30px
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-b25022f *//* Basic styling for the form */
form.checkout.woocommerce-checkout {
    font-family: 'Poppins', sans-serif;
    max-width: 100%;
}

.woocommerce-billing-fields h3, #order_review_heading, .fooevents-attendee-number {
        font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    color: #000;
}

.fooevents-attendee-number {
    color: #bbb;
    font-weight: 600;
    font-size: 20px;
}

/* Apply bottom padding along with specific left and right padding to table cells */
.order-total th, .order-total td {
    padding-bottom: 25px !important; /* Adds 25px padding at the bottom of the table */
}

/* Apply padding to table headers (th) */
body .woocommerce table.shop_table.woocommerce-checkout-review-order-table th {
    padding-left: 25px; /* Add padding on the left */
    padding-right: 25px; /* Add padding on the right */
}

/* Apply padding to table data cells (td) */
body .woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
    padding-left: 25px; /* Add padding on the left */
    padding-right: 25px; /* Add padding on the right */
}

/* Optionally, adjust the first and last cell padding for better alignment */
body .woocommerce table.shop_table.woocommerce-checkout-review-order-table tr th:first-child,
body .woocommerce table.shop_table.woocommerce-checkout-review-order-table tr td:first-child {
    padding-left: 25px; /* Ensures sufficient padding at the start of the row */
}

body .woocommerce table.shop_table.woocommerce-checkout-review-order-table tr th:last-child,
body .woocommerce table.shop_table.woocommerce-checkout-review-order-table tr td:last-child {
    padding-right: 25px; /* Ensures sufficient padding at the end of the row */
}



/* Comprehensive styling to clean up the WooCommerce checkout review order table */
table.shop_table.woocommerce-checkout-review-order-table,
table.shop_table.woocommerce-checkout-review-order-table th,
table.shop_table.woocommerce-checkout-review-order-table td {
    border: none !important; /* Removes all borders */
    border-collapse: collapse; /* Removes space between borders */
    padding: 10px; /* Provides consistent padding */
    background-color: transparent; /* Ensures background does not change */
    color: inherit; /* Maintains consistent text color */
    border-spacing: 0; /* Removes space between cells */
}

/* Removing any hover effects */
table.shop_table.woocommerce-checkout-review-order-table tr:hover,
table.shop_table.woocommerce-checkout-review-order-table th:hover,
table.shop_table.woocommerce-checkout-review-order-table td:hover {
    background-color: transparent; /* No change in background on hover */
    color: inherit; /* Text color does not change on hover */
}

/* Ensuring links inside the table do not change on hover */
table.shop_table.woocommerce-checkout-review-order-table a:hover {
    text-decoration: none; /* No underline or other decoration on hover */
    color: inherit; /* Link color remains the same on hover */
}



.woocommerce-privacy-policy-text {
    padding-bottom: 15px;
    font-size: 12px;
}

/* Styling for all input fields, select boxes, and textareas */
form.checkout.woocommerce-checkout input, 
form.checkout.woocommerce-checkout select,
form.checkout.woocommerce-checkout textarea {
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 15px;
    padding: 10px;
    width: 100%;
}

/* Specific sections to be boxed and margin separated */
form.checkout.woocommerce-checkout .woocommerce-billing-fields,
form.checkout.woocommerce-checkout .woocommerce-shipping-fields,
form.checkout.woocommerce-checkout .woocommerce-additional-fields,
form.checkout.woocommerce-checkout #payment {
    background-color: #e7e7e7 !important;
    padding: 25px;
    margin-bottom: 20px; /* Margin at the bottom of each section */
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Styling for section headers to match the boxes */
#order_review_heading {
    background-color: #e7e7e7;
    padding: 10px;
    border-radius: 15px 15px 0px 0px;
        margin-block-start: 0rem;
    margin-block-end: 0rem;
        padding: 20px;
}

.fooevents-attendee {
    padding-bottom: 50px
}

.woocommerce button#place_order {
    background-color: #000000;  /* Black background */
    color: #FFFFFF;             /* White text */
    width: 100%;                /* Full width of its container */
    border: none;               /* No border */
    padding: 18px 15px;         /* Padding for better sizing */
    font-size: 22px;            /* Font size for better visibility */
    border-radius: 15px;         /* Optional: Rounded corners */
    font-weight: 600;
}

/* Hover effect for the button */
.woocommerce button#place_order:hover {
    background-color: #333333;  /* Darker shade of black on hover */
}

#wc-stripe-upe-form, .wc_payment_methods, .place-order {
    border: 0px !important;
    padding: 0px !important;
}

#wc-stripe-upe-form fieldset {
    padding: 0px !important;
}

.payment_box::before {
    display: none !important;
}

.woocommerce-additional-fields h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: var(--sections-title-spacing, 30px);
    color: var(--sections-title-color, #000);
}

/* Styling labels to ensure text remains black */
form.checkout.woocommerce-checkout label {
    color: #000000;
}

/* Ensuring all sections are full width */
.col2-set, .col-1, .col-2 {
    width: 100% !important;
    float: none;
}


.woocommerce-shipping-fields {
    display: none;
}

form.checkout.woocommerce-checkout .woocommerce-checkout-review-order-table {
    background-color: #e7e7e7;
    padding: 25px;
    border-radius: 0px 0px 15px 15px;
    border: 0px;
}

.woocommerce-checkout #payment div.payment_box {
    background-color: transparent;
    padding: 0px;
}/* End custom CSS */