<div class="mhm-ticker-menu-wrapper">
<div class="mhm-ticker-menu">Our all branches are open today and online delivery is going on. Mega Home Market offering exciting offer on exciting products.
</div>
</div>
.nav>li>a>i {
color: #FF0000;
}
.icon-box-img svg, .icon-box-img img {
padding-top: 0px;
}
.mhm-ticker-menu-wrapper {
position: fixed;
bottom: 0;
/* display: block; */
width: 100%;
text-align: right;
left: 0;
background: #ddd;
color: #D10000;
font-weight: bold;
padding: 5px;
}
.mhm-ticker-menu{
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-name: ticker;
animation-name: ticker;
-webkit-animation-duration: 15s;
animation-duration: 15s;
white-space: nowrap;
}
@-webkit-keyframes ticker {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes ticker {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}