.elementor-116 .elementor-element.elementor-element-1e9a893d > .elementor-widget-container{margin:0px 20px 0px 20px;}/* Start custom CSS for text-editor, class: .elementor-element-1e9a893d *//* ... (previous CSS remains the same) ... */

/* Coupon form styles */

.eael-woo-checkout .woocommerce form.checkout_coupon {
    border: none;
}

.eael-woo-checkout .woocommerce .woocommerce-info {
    border-radius: 5px;
    background-color: #bf191924 !important;
    color: #0c5460;
    padding: 10px;
}

.checkout_coupon {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.checkout_coupon p:first-child {
    margin-top: 0;
    font-weight: bold;
    color: #333;
}

.checkout_coupon .form-row {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0;
}

.checkout_coupon .form-row-first {
    width: 70%;
    padding-right: 10px;
}

.checkout_coupon .form-row-last {
    width: 30%;
}

.checkout_coupon input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.checkout_coupon button[name="apply_coupon"] {
    width: 100%;
    padding: 11px;
    background-color: #bf1919;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: none;
}

.checkout_coupon button[name="apply_coupon"]:hover {
    background-color: #a61616;
}

/* Responsive design for coupon form */
@media (max-width: 768px) {
    .checkout_coupon .form-row-first,
    .checkout_coupon .form-row-last {
        width: 100%;
        padding-right: 0;
    }

    .checkout_coupon .form-row-last {
        margin-top: 10px;
    }
}

.eael-woo-checkout .woocommerce .woocommerce-info {
    background-color: #bf191924 !important;
    color: #0c5460;
}

a.showcoupon {
    text-decoration: underline;
    color: #bf1919;
}

/* General styles */
.woocommerce-checkout {
    font-family: default;
    color: #333;
    max-width: auto;
}

.woocommerce-checkout .select2 .select2-selection {
    border-radius: 5px;
    background: #f9f9f9;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle {
    padding: 0;
}

/* Form fields */
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}

/* Labels */
.woocommerce-checkout label {
    font-size: 16px !important;
    font-weight: bold !important;
    margin-bottom: 5px;
    display: block;
}

/* Sections */
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Section headings */
.woocommerce-checkout h3 {
    color: #bf1919;
    border-bottom: 2px solid #bf1919;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Order review table */
.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.woocommerce-checkout-review-order-table thead {
    background-color: #f5f5f5;
}

/* Payment methods */
.wc_payment_methods {
    list-style-type: none;
    padding: 0;
}

.wc_payment_method {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 10px;
}

/* Place order button */
#place_order {
    background-color: #bf1919;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#place_order:hover {
    background-color: #a61616;
}

.woocommerce-checkout-payment ul li:last-child {
    border-bottom: none;
    background: none;
    border: none;
    /* border-radius: 5px; */
}

.woocommerce .aux-shop-table.shop_cart_totals #shipping_method li, .woocommerce .aux-shop-table.shop_checkout_totals #shipping_method li {
    border-bottom: 1px dashed #BBB;
    /* padding: 0.9em 0; */
    display: flex;
    align-items: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .woocommerce-checkout .aux-col {
        width: 100%;
    }
}

/* ... (previous CSS remains the same) ... */

/* Select2 Dropdown Styles */
.select2-container--default .select2-selection--single {
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 40px;
    padding: 5px 10px;
    background-color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
    color: #333;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #bf1919;
    color: #ffffff;
}

.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.select2-results__option {
    padding: 8px 12px;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.select2-results__option:hover {
    background-color: #f5f5f5;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e6e6e6;
}

.select2-dropdown {
    border-color: #ddd;
}

.select2-search--dropdown {
    padding: 8px;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 5px;
}

/* Custom scrollbar for Webkit browsers */
.select2-results__options::-webkit-scrollbar {
    width: 8px;
}

.select2-results__options::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.select2-results__options::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.select2-results__options::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.woocommerce label span {
    vertical-align: middle;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 2px;
}/* End custom CSS */