/*
Theme Name: Lifelinehospital
Theme URI: https://lifelinehospital.com.np/
Description: A Theme by Hamro Idea Pvt. Ltd
Author: Hamro Idea
Author URI: https://hamroidea.com.np/
Template: mavix-corporate
Version: 1.0.0
*/

/* Import the parent theme's stylesheet */
@import url("../mavix-corporate/style.css");

.entry-meta .byline,
.entry-meta .author,
.single .byline, .group-blog .byline
{
    display: none !important;
}
.entry-meta .date {
    margin-left: 0;
}


/*News Ticker*/
#masthead{
    margin-top:40px;
}
.ticker-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4000;
    background-color: #3763eb;
    padding: 10px;
    overflow: hidden; /* Add this to hide the text when it scrolls out */
}

.ticker-content {
    display: inline-block;
    text-align: center;
    color: #ffffff;
	font-weight: bold;
    white-space: nowrap; /* Prevent text wrapping */
    animation: scroll-right 30s linear infinite; /* Animation to scroll text */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(120vw);
    }
}
@keyframes scroll-right {
    0% {
        transform: translateX(120vw); /* Start off-screen to the right */
    }
    100% {
        transform: translateX(-100%); /* End off-screen to the left */
    }
}