/*
Theme Name:     Kleo Child
Theme URI:
Description:    Child theme for Kleo
Author:         SeventhQueen
Author URI:     http://seventhqueen.com
Template:       kleo
Tags:  one-column, two-columns, right-sidebar, fluid-layout, custom-menu, featured-images, post-formats, sticky-post, translation-ready
License: GNU General Public License
License URI: license.txt
*/

/*
* Please add your custom styles below
*/




.testimonial-image-ben {
    display: flex;
    justify-content: center; /* Horizontally centers the image */
    align-items: center; /* Vertically centers the image */
    height: 220px; /* Ensure the container is tall enough for vertical centering */
}

.testimonial-image-ben img {
    border-radius: 50%;
    width: 220px;
    height: 220px;
    object-fit: cover;
}



/* Grid structure with consistent spacing */
.woocommerce.columns-4 .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four even columns */
    gap: 20px; /* Spacing between product cards */
    padding: 20px;
    max-width: 1200px; /* Limits container width for centering */
    margin: 0 auto;
}

/* Product card styling */
.products .product {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.products .product:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Image styling within product cards */
.product .kleo-woo-image img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

/* New badge styling - positioning it consistently */
.product .new-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #28a745;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    z-index: 1;
}

/* Product title and price alignment */
.product h3 {
    font-size: 1em;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.product .price {
    font-size: 1em;
    color: #333;
    font-weight: bold;
    margin: 5px 0 10px;
}

/* Add to Cart button styling */
.product .add_to_cart_button {
    display: inline-block;
    background-color: #0073e6;
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    text-transform: uppercase;
    margin-top: 10px;
    text-align: center;
    width: 80%; /* Center the button with even spacing */
    transition: background-color 0.3s ease;
}

.product .add_to_cart_button:hover {
    background-color: #005bb5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .woocommerce.columns-4 .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .woocommerce.columns-4 .products {
        grid-template-columns: 1fr;
    }

    .product .add_to_cart_button {
        padding: 8px 16px;
        font-size: 13px;
    }
}


/* Button styling */
.styled-button {
    display: inline-block;
    padding: 10px 40px;
    border: 2px solid #27B0A6;
    border-radius: 4px;
    background-color: white;
    color: #27B0A6;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
}

/* Button active state styling (Tunedly color) */
.styled-button.active {
    background-color: #27B0A6;
    color: white;
}






/* Checkmark styling */
.checkmark {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    position: relative;
    vertical-align: middle;
}

.checkmark::after {
    content: "✓"; /* Checkmark symbol */
    color: white;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: -2px;
    left: 3px;
}


/* Ensure the loading spinner's container expands properly */
.button.loading,
.ajax_add_to_cart.loading {
    display: inline-flex; /* Allows spinner to sit beside the text without compressing */
    align-items: center; /* Centers spinner vertically */
    padding-right: 20px; /* Adds space for spinner to appear without restriction */
}

.button.loading::after,
.ajax_add_to_cart.loading::after {
    content: ''; /* Keeps the spinner */
    display: inline-block;
    width: 16px;
    height: 16px;
    border-width: 2px; /* Visible border */
    border-style: solid;
    border-color: white transparent transparent transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px; /* Adds space between text and spinner */
    vertical-align: middle; /* Aligns with text */
}

/* Spinner animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Remove default WooCommerce spinner background */
.button.loading::before,
.ajax_add_to_cart.loading::before {
    content: none !important; /* Prevents WooCommerce from adding its default spinner */
    display: none !important;
}

/* Alternative: if a background is applied directly to the button */
.button.loading,
.ajax_add_to_cart.loading {
    background-image: none !important; /* Removes any background or spinner image */
}

.product .add_to_cart_button {
    background-color: transparent; /* Match background to blend in */
    color: #00a99d; /* Custom text color */
    font-weight: bold;
    border: none; /* Remove default button border */
    text-transform: uppercase;
    padding: 10px; /* Adjust padding */
    text-decoration: none;
}

.product .add_to_cart_button:hover {
    color: #007c6b; /* Optional hover effect for button */
}



p.product .add_to_cart_button {
    background-color: #fff !important; /* White background */
    color: #219ca6 !important; /* Tunedly color */
    border: 2px solid #219ca6 !important; /* Add Tunedly-colored outline */
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 16px;
}

p.product .add_to_cart_button:hover {
    background-color: #219ca6 !important; /* Hover effect */
    color: #fff !important;
    border: 2px solid #219ca6 !important; /* Keep border on hover */
}

.add_to_cart_button.added {
    background-color: #219ca6 !important; /* Tunedly color when added */
    color: #fff !important; /* White text */
    border: 2px solid #219ca6 !important;
    position: relative;
    padding-right: 30px; /* Make space for the tick */
}

.add_to_cart_button.added::before {
    content: '✔'; /* Display tick mark */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #219ca6; /* Tunedly color for tick */
    font-size: 16px; /* Adjust size of the tick */
}
}

.add_to_cart_button.added:hover {
    background-color: #007c6b !important; /* Darker hover */
    color: #fff !important;
}

.custom-submit-container input[type="submit"].acf-button.tunedly-button {
    background-color: #219ca6 !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    padding: 10px 20px !important;
    border: none !important;
    cursor: pointer !important;
}

.comments-section {
    background-color: #f1f1f1; /* Light background for chat */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comment {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 15px;
}

.comment .comment-author {
    font-weight: bold;
}

.comment .comment-body {
    background-color: #e6e6fa; /* Light purple for user messages */
    border-radius: 15px;
    padding: 10px;
}

.comment .comment-body.admin {
    background-color: #d1ffd1; /* Light green for admin messages */
}


.media-date {
    font-size: 0.8em; /* Adjust size as needed */
    color: #888; /* Optional: Add a lighter color for subtle appearance */
    display: block; /* Ensures it displays on its own line */
    margin-top: 5px; /* Optional: Add space above */
}


/* 

//styles from customizer
 */

/* Style for the submit button */
li.wpuf-submit .wpuf-submit-button {
    background-color: #219ca6; /* Match the teal color */
    color: white; /* Text color */
    padding: 12px 30px; /* Padding for size */
    border: none; /* Remove border */
    border-radius: 30px; /* More rounded corners */
    font-size: 18px; /* Slightly larger font size */
    font-weight: bold; /* Bold text */
    text-transform: uppercase; /* Uppercase text */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transition */
}

/* Hover effect for the submit button */
li.wpuf-submit .wpuf-submit-button:hover {
    background-color: #005f5f; /* Darker teal on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Style for the Save Draft link */
li.wpuf-submit #wpuf-post-draft {
    display: inline-block; /* Allow margin and padding */
    margin-left: 10px; /* Spacing between buttons */
    padding: 8px 15px; /* Smaller padding for size */
    background-color: #d3d3d3; /* Light grey color */
    color: #555; /* Dark grey text color */
    border: none; /* Remove border */
    border-radius: 25px; /* More rounded corners */
    text-decoration: none; /* Remove underline */
    font-size: 14px; /* Slightly smaller font size */
    font-weight: normal; /* Normal text weight */
    text-transform: none; /* Keep text as is */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transition */
}

/* Hover effect for the Save Draft link */
li.wpuf-submit #wpuf-post-draft:hover {
    background-color: #b0b0b0; /* Darker grey on hover */
    transform: scale(1.02); /* Slightly enlarge on hover */
}

.product .add_to_cart_button {
    background-color: transparent; /* Match background to blend in */
    color: #00a99d; /* Custom text color */
    font-weight: bold;
    border: none; /* Remove default button border */
    text-transform: uppercase;
    padding: 10px; /* Adjust padding */
    text-decoration: none;
}

.product .add_to_cart_button:hover {
    color: #007c6b; /* Optional hover effect for button */
}



p.product .add_to_cart_button {
    background-color: #fff !important; /* White background */
    color: #219ca6 !important; /* Tunedly color */
    border: 2px solid #219ca6 !important; /* Add Tunedly-colored outline */
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 16px;
}

p.product .add_to_cart_button:hover {
    background-color: #219ca6 !important; /* Hover effect */
    color: #fff !important;
    border: 2px solid #219ca6 !important; /* Keep border on hover */
}

.add_to_cart_button.added {
    background-color: #219ca6 !important; /* Tunedly color when added */
    color: #fff !important; /* White text */
    border: 2px solid #219ca6 !important;
    position: relative;
    padding-right: 30px; /* Make space for the tick */
}

.add_to_cart_button.added::before {
    content: '✔'; /* Display tick mark */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #219ca6; /* Tunedly color for tick */
    font-size: 16px; /* Adjust size of the tick */
}
}

.add_to_cart_button.added:hover {
    background-color: #007c6b !important; /* Darker hover */
    color: #fff !important;
}


/* Make the Auth0 Lock widget 100% wide */
#auth0-login-container .auth0-lock {
    width: 100% !important;
    max-width: 100% !important;
}

#auth0-login-container .auth0-lock-center {
    max-width: 100% !important; /* Ensure no padding on inner container */
    padding: 0 !important;
}

#auth0-login-container .auth0-lock-widget {
    width: 100% !important;
}

/* Customize the background color and hover effect of the Auth0 Lock submit button */
#auth0-login-container .auth0-lock-submit {
    background-color: #219ca6 !important; /* Sets button background color */
    border-color: #219ca6 !important; /* Sets border to match */
    color: #ffffff !important; /* Sets text color to white */
}

#auth0-login-container .auth0-lock-submit:hover {
    background-color: #197a85 !important; /* Darker shade on hover */
    border-color: #197a85 !important;
}

/* Target the logo in the Auth0 Lock widget */
#auth0-login-container .auth0-lock-header-logo {
    width: auto !important; /* Allow the image to use its natural width */
    height: auto !important; /* Allow the image to use its natural height */
    max-width: none !important; /* Remove any max-width limit */
    max-height: none !important; /* Remove any max-height limit */
}

 /* Ensure the input fields are full width with padding and border radius */
        .pmpro-custom-input {
            width: 100%;
            padding: 12px;
            border-radius: 5px;
            border: 1px solid #ccc; /* Adjust default border color if needed */
            transition: border-color 0.5s ease; /* Smooth transition for focus */
        }
        /* Change border color on focus to match the highlight style */
        .pmpro-custom-input:focus {
            border-color: #2b62a7; /* Match this color to other input fields on focus */
            outline: none; /* Remove default outline */
            box-shadow: 0 0 5px rgba(102, 175, 233, 0.5); /* Optional shadow for extra highlight */
        }

/* Custom ACF Form Styles */
#custom-acf-form {
    max-width: 100%;
    margin: 0 auto;
}

#custom-acf-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

#custom-acf-form input[type="text"],
#custom-acf-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#custom-acf-form input[type="submit"] {
    background-color: #219ca6;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#custom-acf-form input[type="submit"]:hover {
    background-color: #1a7e87;
}

#acf-form {
    max-width: 100%;
    margin: 0 auto;
}

#acf-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

#acf-form input[type="text"],
#acf-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#acf-form input[type="submit"] {
    background-color: #219ca6;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#acf-form input[type="submit"]:hover {
    background-color: #1a7e87;
}

/* Targeting the active tab in the BuddyBoss menu */
.bp-personal-tab.current.selected .bb-single-nav-item-point {
    color: #333333 !important; /* Replace with your desired text color */
}

/* Target the main title of the page */
.member-title-wrap .user-nicename {
    color: #219ca6 !important; /* Replace with your preferred visible color */
}

/* Universal styling for all main titles across BuddyBoss sections */
.member-title-wrap .user-nicename,
.bp-group-title-wrap .bb-bp-group-title,
.flex.align-items-center h2 {
    color: #219ca6 !important; /* Replace with your preferred color */
}

/* Apply to all active/selected menu items */
.bp-personal-tab.current.selected .bb-single-nav-item-point,
.bp-groups-tab.current.selected .bb-single-nav-item-point,
.bp-messages-tab.current.selected .bb-single-nav-item-point,
.bp-friends-tab.current.selected .bb-single-nav-item-point,
.bp-activity-tab.current.selected .bb-single-nav-item-point,
.bp-settings-tab.current.selected .bb-single-nav-item-point {
    color: #333333 !important; /* Set your desired color */
}


/* Adjust vertical alignment for the label cells */
.profile-fields.bp-tables-user .label {
    vertical-align: middle;
    padding: 22px 15px; /* Reduces top and bottom padding for better alignment */
    font-weight: bold;
    background-color: #f1f1f1;
    display: flex;
    align-items: center; /* Ensures centered alignment */
}

/* Data column styling for consistency */
.profile-fields.bp-tables-user .data {
    vertical-align: middle;
    padding: 8px 15px;
}

#menu-item-2086 .btn-see-through {
    color: #ffffff !important; /* Makes the text white */
}



.woofc-action-checkout.loading {
    position: relative;
    color: inherit; /* Keeps the button text visible */
}

.woofc-action-checkout.loading:after {
    content: '';
    display: inline-block;
    margin-left: 10px; /* Adjust spacing as needed */
    width: 16px; /* Adjust spinner size if necessary */
    height: 16px;
    border: 2px solid #ccc;
    border-top: 2px solid #0073e6; /* Adjust color to match your theme */
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle; /* Aligns the spinner with the text */
}

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



.media-attachment-list {
    list-style: none;
    padding: 0;
}

.media-attachment-item {
    margin-bottom: 15px;
}

.media-icon {
    font-size: 1.2em;
    margin-right: 5px;
}

.media-thumbnail img {
    max-width: 100%;
    height: auto;
}

.media-link {
    display: inline-block;
    margin-top: 5px;
    color: #0073aa;
    text-decoration: none;
}

.media-link:hover {
    text-decoration: underline;
}

.media-description {
    font-size: 0.9em;
    color: #555;
}

.pmpro_actions_nav a {
    color: #333; /* Darker color for better visibility */
    font-weight: 600; /* Slightly bold to stand out */
}

.pmpro_actions_nav a:hover {
    color: #555; /* Darken even more on hover */
    text-decoration: underline; /* Optional hover effect */
}




.vc_row.dark-tint::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5) !important; /* Dark tint */
    z-index: 1;
    pointer-events: none;
}

.vc_row.dark-tint {
    position: relative !important;
    overflow: hidden !important;
}

.vc_row.dark-tint .vc_column-inner, 
.vc_row.dark-tint .wpb_wrapper {
    position: relative;
    z-index: 2;
}







/* General styling for the ACF form input fields */
.acf-input input[type="text"],
.acf-input input[type="email"],
.acf-input textarea,
.acf-input select {
    width: 100%; /* Full width */
    padding: 12px; /* Larger padding for a bigger input field */
    font-size: 16px; /* Larger font size for readability */
    border-radius: 8px; /* Rounded corners */
    border: 1px solid #ccc; /* Light border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: all 0.3s ease; /* Smooth transition for hover and focus */
    background-color: #f9f9f9; /* Light background for inputs */
}

/* Styling the inputs when focused */
.acf-input input[type="text"]:focus,
.acf-input input[type="email"]:focus,
.acf-input textarea:focus,
.acf-input select:focus {
    outline: none; /* Remove default outline */
    border-color: #219ca6; /* Tunedly brand color */
    box-shadow: 0 2px 10px rgba(33, 156, 166, 0.3); /* Stronger shadow with brand color */
    background-color: #ffffff; /* Pure white background for focus */
}

/* Style the submit button */
.acf-form-submit input[type="submit"] {
    background-color: #219ca6; /* Tunedly brand color */
    color: #ffffff; /* White text */
    border: none;
    border-radius: 8px;
    font-size: 18px; /* Larger font for prominence */
    padding: 12px 24px; /* Padding for a larger button */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition on hover */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); /* Shadow to make the button pop */
}

/* Submit button hover effect */
.acf-form-submit input[type="submit"]:hover {
    background-color: #1b818b; /* Slightly darker shade on hover */
}



/* Container for the related products section */
.tunedly-related-products-container {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.tunedly-related-products-container h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.tunedly-related-products-container p {
    color: #666;
    margin-bottom: 20px;
}

/* Grid layout for products */
.tunedly-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* Individual product item */
.tunedly-product-item {
    width: calc(25% - 20px); /* Adjusts for 4 columns with spacing */
    text-align: center;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-sizing: border-box;
    transition: transform 0.2s;
}

.tunedly-product-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.tunedly-product-item img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.tunedly-product-title {
    font-size: 16px;
    color: #333;
    text-decoration: none;
}

.tunedly-product-price {
    display: block;
    font-size: 14px;
    color: #219ca6; /* Tunedly color */
    margin: 5px 0;
}

/* Add to Cart Button */
.tunedly-add-to-cart {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #219ca6; /* Tunedly color */
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}

/* Add to Cart Button Hover - Slightly Darker Background */
.tunedly-add-to-cart:hover {
    color: #fff !important;
	background-color: #1a7d85; /* Darker Tunedly color for hover */
}

.tunedly-product-title {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tunedly-product-item img {
    width: 100%;
    height: 100px; /* Adjust as needed */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}


/* for the in progress status text
/* Status badge styling */
.order-status {
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.85em;
    border-radius: 4px;
    color: #fff; /* Default text color */
    font-weight: bold;
}

/* Specific colors for each status */
.status-in-progress {
    background-color: #7f55f2; /* tunedly green for 'In Progress' */
}

.status-completed {
    background-color: #219ca6; /* Green for 'Completed' */
}

.status-on-hold {
    background-color: #d9534f; /* Red for 'On Hold' */
}

.status-review-delivery {
    background-color: #ff69b3;
}








/* Industry News Header Container */
.industry-news-header {
    max-width: 1200px; /* Set the same width as the main content area */
    margin: 0 auto; /* Center the header within the page */
    padding: 20px 0;
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the title horizontally */
}

/* Title styling */
.industry-news-title {
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #333;
    text-align: center; /* Center the text within the title element */
}

/* Controls container styling */
.industry-news-controls {
    display: flex;
    justify-content: space-between; /* Align category links to the left and search bar to the right */
    width: 100%; /* Ensures the controls take up the full width */
    max-width: 1200px; /* Keeps it contained within the same width as the header */
    align-items: center;
}

/* Category links styling */
.category-links {
    display: flex;
    gap: 15px;
}

.category-links a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.category-links a:hover {
    color: #219ca6;
    text-decoration: underline;
}

/* Search bar styling */
.search-bar input[type="search"] {
    width: 200px;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Optional: Hide the submit button if not needed */
.search-bar input[type="submit"] {
    display: none;
}



/* Hide the top menu on larger screens */
div.top-bar.top-bar-flex {
    display: none !important;
}

/* Show the top menu on screens 768px or smaller */
@media (max-width: 970px) {
    div.top-bar.top-bar-flex {
        display: flex !important;
    }
}

.media-date {
    font-size: 0.8em; /* Adjust size as needed */
    color: #888; /* Optional: Add a lighter color for subtle appearance */
    display: block; /* Ensures it displays on its own line */
    margin-top: 2px; /* Optional: Add space above */
}

.media-attachment-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.media-attachment-item {
    margin-bottom: 5px; /* Space between items */

}

.media-icon {
    font-size: 1.2em;
    margin-right: 10px;
    color: #333;
    flex-shrink: 0; /* Prevent icon from resizing */
}

.media-title {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 5px;
}


.media-link {
    color: #0073aa;
    text-decoration: none;
	top:-10px;
}

.media-link:hover {
    text-decoration: underline;
}

.media-attachment-item div {
    margin-top: 5px; /* Space for the link */
}

/* Base styles */
.kleo-messages-nav > a,
.kleo-notifications-nav > a {
    display: inline-flex !important;
    align-items: center !important;
    height: 88px !important;
}

/* Hide text */
.kleo-messages-nav > a .notify-items,
.kleo-notifications-nav > a .notify-items {
    font-size: 0 !important;
}

/* Messages icon */
.kleo-messages-nav > a:before {
    content: "\f0e0";
    font-family: "FontAwesome";
    font-size: 16px;
    display: inline-block;
}

/* Bell icon */
.kleo-notifications-nav > a:before {
    content: "\f0f3";
    font-family: "FontAwesome";
    font-size: 16px;
    display: inline-block;
}

.highlight > a {
    display: inline-block !important;
    padding: 16px 25px !important;
    border-radius: 4px !important;
    background-color: #219ca6 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    margin: 20px 0 !important;
    line-height: normal !important;
}

.highlight > a:hover {
    background-color: #1b8891 !important;
    color: #fff !important;
    text-decoration: none !important;
}








/* Avatar size and container - Notifications */
.kleo-toggle-submenu .notification-avatar {
    position: relative !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 px !important;
	left: -29px;
}

.kleo-toggle-submenu .notification-avatar img {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    border-radius: 50% !important;
}

/* Message icon positioning */
.kleo-toggle-submenu .notification-avatar .bb-icon-comment-square {
    position: absolute !important;
    bottom: -4px !important;
    right: -4px !important;
    background: #fff !important;
    border-radius: 50% !important;
    font-size: 16px !important;
    padding: 2px !important;
}

/* Hide status indicator */
.kleo-toggle-submenu .notification-avatar .member-status {
    display: none !important;
}

/* Layout fixes - Notifications */
.kleo-toggle-submenu .ab-item {
    display: flex !important;
    align-items: flex-start !important;
    padding: 8px !important;
    gap: 0 !important;
}

.kleo-toggle-submenu .notification-content {
    flex: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.kleo-toggle-submenu .notification-content .bb-full-link {
    margin: 0 !important;
    padding: 0 !important;
    text-indent: 0 !important;
}

.kleo-toggle-submenu .notification-content .bb-full-link a {
    padding: 0 !important;
    text-indent: 0 !important;
    display: inline !important;
}

.kleo-toggle-submenu .posted {
    color: #999 !important;
    font-size: 12px !important;
    margin-top: 2px !important;
}

/* Hide notification numbers */
.kleo-toggle-submenu .submenu-inner {
    list-style: none !important;
    counter-reset: none !important;
}

.kleo-toggle-submenu .kleo-submenu-item::before {
    display: none !important;
}

/* Message Menu Styles */
.kleo-toggle-submenu .kleo-submenu-item {
    display: flex !important;
    flex-wrap: wrap !important;
    padding: 8px 8px 8px 20px !important;
    gap: 0 !important;
}

.kleo-toggle-submenu .message-thumb {
    width: 50px !important;
    height: 50px !important;
    padding-right: 15px !important;
}

.kleo-toggle-submenu .message-thumb img {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    border-radius: 50% !important;
}

.kleo-toggle-submenu .message-from-wrap {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    font-style: normal !important;
    padding-left: 0 !important;
}

.kleo-toggle-submenu .message-from {
    font-style: normal !important;
    margin-bottom: 2px !important;
    padding-left: 0 !important;
}

.kleo-toggle-submenu .message-date {
    font-style: normal !important;
    color: #999 !important;
    font-size: 12px !important;
		padding-left: 18px !important;
}

.kleo-toggle-submenu .message-body {
    width: 100% !important;
    padding-left: 49px !important;
    margin-top: 4px !important;
}

.kleo-toggle-submenu .message-body a {
    color: #999 !important;
    font-size: 13px !important;
}


/* Target every possible variation of the order notes block */
.wc-block-checkout__order-notes,
.wp-block-woocommerce-checkout-order-note-block,
#order-notes,
.wc-block-checkout__add-note,
div[id*="order-notes"],
div[class*="order-note"],
.wc-block-components-checkout-step__content .wc-block-checkout__add-note,
.wc-block-components-checkout-step[id="order-notes"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
}

.wpcss-cart .woocommerce-Price-amount {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

