/* Styles for Cooler Bag Dashboard Table */
.cooler-bag-dashboard-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

.cooler-bag-dashboard-table th,
.cooler-bag-dashboard-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.cooler-bag-dashboard-table th {
    background-color: #f4f4f4;
    font-weight: bold;
    color: #333;
}

.cooler-bag-dashboard-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.cooler-bag-dashboard-table tr:hover {
    background-color: #f1f1f1;
}

.cooler-bag-dashboard-table td {
    color: #555;
}

.cooler-bag-dashboard-table td a {
    color: #0073aa;
    text-decoration: none;
}

.cooler-bag-dashboard-table td a:hover {
    text-decoration: underline;
}

.cart-upsell-section .upsell-products .product-content .upsell_add_to_cart_cta {
    font-weight: 800;
    padding: 10px 10px;
    font-size: 20px;
    line-height: 1;
    display: none;
    border: 0;
}

table.lpp-shipping-package-wrapper {
    margin: 0;
    border: none;
    display: none;
}

.cart-upsell-section {
    display: none;
}

/* Hide the right-hand column where the order summary used to be */
.woocommerce-checkout .col-2 {
    display: none !important;
}

/* Make the billing details section full width */
.woocommerce-checkout .col-1 {
    width: 100% !important;
}

/* Add styling to the order review section for better spacing */
#order_review {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}



/* form.woocommerce-shipping-calculator {
    display: none;
}

p.woocommerce-shipping-destination {
    display: none;
} */

tr.cart-subtotal td {
    border-bottom: 1px solid #d5d8dc !important;

}

tr.order-total {
    background: #f7f7f7;
}

.order-total td {
    position: relative;
}

.order-total td:before {
    content: '';
    display: inline-table;
    position: absolute;
    width: 56px;
    left: 0;
}

input.qty {
    text-align: center !important;
}

.woocommerce-js a.remove:hover:before {
    height: 23px;
    width: 23px;
}

.elementor-widget-woocommerce-cart .woocommerce .cart_totals h2 {
    font-size: 22px;
    padding-bottom: 0px;
}

.woocommerce-js a.remove {
    width: 20px !important;
}

fieldset#shipping-option {
    display: none;
}


/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
    margin-left: 15px !important;
    margin-right: 10px !important;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #11a837;
}

input:focus+.slider {
    box-shadow: 0 0 1px #11a837;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

span.elementor-button-icon-qty {
    letter-spacing: normal;
}



.cooler-bag-checkout {
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    margin-top: 20px;
    text-align: center;
    display: none;
    /* Hidden by default */
}

.cooler-bag-checkout img {
    width: 100px;
    height: auto;
}

.cooler-bag-toggle {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.cooler-bag-toggle input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    /* To make the checkbox more visible */
}

.cooler-bag-toggle label {
    font-size: 18px;
    margin: 0px 0px 0px 16px;
    color: #67768e;
}

/* Spinner for immediate visual feedback */
.ajax-loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid #3498db;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cooler-bag-toggle .ajax-loading-spinner {
    margin-left: 10px;
}


.cooler-bag-toggle {
    position: relative;
    display: inline-block;
}

.info-icon {
    display: inline-block;
    width: 20px;
    /* Adjust size as needed */
    height: 20px;
    /* Adjust size as needed */
    background-color: rgb(99, 163, 2);
    /* Background color */
    border-radius: 50%;
    /* Makes the icon circular */
    text-align: center;
    /* Center the text inside the circle */
    line-height: 20px;
    /* Vertically center the text */
    color: #fff;
    /* Text color (white for contrast) */
    font-size: 12px;
    /* Adjust font size */
    cursor: pointer;
    /* Changes cursor to pointer on hover */
    margin-left: 10px;
    /* Space between text and icon */
}

.tooltip {
    visibility: hidden;
    width: 300px;
    background-color: #555;
    color: #fff;
    text-align: left;
    padding: 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -150px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}

.cooler-bag-toggle:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.wpcot-tip-name,
.wpcot-tip-value.wpcot-tip-value-none {
    display: none;
}

ul#shipping_method li {
    padding: 5px 10px;

}

ul#shipping_method li:first-child {
    margin-bottom: 13px;
    background: #21aa425c;
    display: inline-block;
    width: 100%;
}

ul#shipping_method li:first-child label,
ul#shipping_method li:first-child label span {
    color: black !important;
}

#routingdropdownOptions {
    display: none;
}