/*----Ticker------*/
  
  
  /* Clock */

.clock-container {
    display: inline;
    font-size: 13px;
    color: #333;
    font-weight: bold;
}
.image-container img {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -moz-transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}
.image-container img:hover {
    filter: brightness(0) saturate(100%) invert(11%) sepia(100%) saturate(7448%) hue-rotate(265deg) brightness(84%) contrast(110%);
}


/*--------------------------*/

/*--Blinking Custom order--------*/

.blinking-custom {
    font-size: 15px;
    font-weight: bold;
    color: #F70000;
    
    animation: blink 1s infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  
  /*-----------------------------------*/
  
  
  /* category rating chart */
  
 /* Container for the rating chart */
.average-rating-chart {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

/* Individual category row styling */
.category-row {
    display: flex;
    flex-wrap: wrap; /* Allow for wrapping on smaller screens */
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Category name styling */
.category-label {
    width: 30%; /* Adjust width for mobile view */
    font-size: 1em;
    font-weight: bold;
    text-align: left;
    margin-right: 10px;
    flex-shrink: 0; /* Prevent shrinking */
}

/* Progress bar styling */
.category-progress-bar {
    flex: 1;
    height: 10px;
    margin: 0 10px;
    position: relative;
    max-width: 50%; /* Limit max width */
    width: 100%; /* Allow full width on smaller screens */
}

/* Rating percentage label styling */
.rating-percentage {
    width: 20%;
    text-align: right;
    font-size: 0.9em;
    color: #333;
    flex-shrink: 0; /* Prevent shrinking */
}

/* Responsive Design for Tablets and Below */
@media screen and (max-width: 1024px) {
    .category-label {
        width: 40%; /* Increase the width of category label */
    }

    .rating-percentage {
        width: 25%; /* Adjust width for the percentage */
    }
}

/* Mobile view styling */
@media screen and (max-width: 768px) {
    .category-row {
        flex-direction: column;
        align-items: flex-start; /* Stack items vertically */
    }

    .category-label,
    .rating-percentage {
        width: 100%; /* Make label and percentage take full width */
        text-align: left; /* Align left for smaller screens */
        margin-bottom: 10px; /* Add space between the label and percentage */
    }

    .category-progress-bar {
        max-width: 90%; /* Allow progress bar to take most of the width */
    }
}

/* Extra small screen (Mobile Phones) */
@media screen and (max-width: 480px) {
    .category-label {
        font-size: 0.9em;
    }

    .category-progress-bar {
        height: 8px; /* Slightly smaller progress bar on mobile */
    }

    .rating-percentage {
        font-size: 0.8em;
    }
}


/*===============Main side bar===========*/


.wp-block-heading-sb {
    background-color: #fafafa;
	border: 1px solid rgba(0, 0, 0, 0.06);
	margin-bottom: 20px;
	padding: 10px 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 1px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
    width: 100%;
    background: #FAFAFA;
    padding: 10px;
    text-transform: uppercase;
    
}

/*========Top review====================*/

.cus-ti-p {
    background: none;
    margin-bottom: -32px !important;
	font-family: "Roboto", sans-serif;	
	font-size: 20px;	
	line-height: 25px;	
	font-weight: 400;
}

/*==========Slack slider arrow color==========*/

/* Change arrow color */
.slick-prev::before, 
.slick-next::before {
    color: #530CDF !important; /* Change this to your desired color (red in this example) */
    font-size: 24px; /* Optional: Adjust the arrow size */
}

/* Optional: Hover effect */
.slick-prev:hover::before, 
.slick-next:hover::before {
    color: #008000; /* Change to hover color (green in this example) */
}


/*===========Custom My account=========== */

/* Style for the dropdown menu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 0;
    margin: 0;
    list-style: none;
    max-height: calc(100vh - 20px); /* Ensure dropdown fits within the viewport */
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Parent menu styling */
.menu-item-has-children {
    position: relative;
}

/* Dropdown items styling */
.sub-menu li {
    padding: 10px 15px;
    white-space: nowrap;
    border-bottom: 1px solid #eee;
}

.sub-menu li:last-child {
    border-bottom: none;
}

/* Links inside dropdown */
.sub-menu li a {
    text-decoration: none;
    color: #333;
}

.sub-menu li a:hover {
    color: #0073aa;
    background-color: #f9f9f9;
}

/* Ensure dropdown doesn't go out of viewport */
.menu-item-has-children:hover .sub-menu {
    display: block;
    max-height: calc(100vh - 50px); /* Dropdown fits within the viewport */
}

/* Individual styling for user icon */
.account-icon i.fa-user {
    margin-right: 8px; /* Space between icon and text */
    font-size: 13px;
    color: #333;
}

/* Individual styling for caret icon */
.dropdown-icon i.fa-caret-down {
    margin-left: 6px; /* Space between text and caret */
    font-size: 10px;
    color: #333;
}

/* Custom scrollbar for dropdown */
.sub-menu::-webkit-scrollbar {
    width: 6px;
}

.sub-menu::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.sub-menu::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}





  
 

