$60.00
/* Announcement Bar Styles */ .announcement-bar { background-color: #312e81; color: white; padding: 1rem 0; overflow: hidden; width: 100%; } .announcement-bar__content { display: flex; white-space: nowrap; animation: scroll 20s linear infinite; } .announcement-bar__message { display: flex; align-items: center; padding: 0 2rem; flex-shrink: 0; } .icon { color: #fde047; margin-right: 0.5rem; } .highlight { color: #fde047; } .separator { margin: 0 1rem; } @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }