Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
.announcement-bar__message {
display: inline-block;
white-space: nowrap;
animation: cartpik-marquee 22s linear infinite;
}
@keyframes cartpik-marquee {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}