/*
    File: uidev.css
    Description: Custom styles for the development phase of the project front end.
    Author: Suchithra.S
    Company Name: Ginger Technologies
    Created: August 30, 2023
    Last Modified: 
    Version: v19
*/

/* Your CSS rules and styles go here */

/* 30-08-2023 */
.header-offer-msg {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-container {
    animation: marquee 20s linear infinite;
}

.marquee-content {
    display: inline-block;
    margin-right: 20px; /* Adjust as needed for spacing between texts */
    font-size: 18px; /* Adjust the font size as needed */
    animation: marquee 20s linear infinite;
    animation-delay: -2s; /* Negative delay to start immediately */

}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.sidebar-block .specialprice-sidebar-block-category {
  overflow-y: auto;
  max-height: 200px;
}