
.ticker {
	position: fixed;
	/*top: 0;*/ /* vị trí trên cùng */
	/*left: 0;*/
	width: 100%;
	z-index: 1; /* phải THẤP hơn header (z-index 2), nếu không thanh này sẽ đè lên menu xổ xuống */
	overflow: hidden;
	background: #00a8e8;
	border-bottom: 2px solid #fff;
	padding: 6px 0;
	box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}



.ticker__wrap {
	display: flex;
	width: max-content;
}

.ticker__move {
	display: flex;
	flex-shrink: 0;
}

	.ticker__move a {
		color: #fff;
		text-decoration: none;
		margin: 0 40px;
		font-weight: 600;
		font-size: 15px;
		white-space: nowrap;
	}

		.ticker__move a:hover {
			text-decoration: underline;
		}

/* Hiệu ứng cuộn liên tục không ngắt */
@keyframes ticker-loop {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.ticker__wrap {
	animation: ticker-loop 40s linear infinite;
}

/* Dừng lại khi hover */
.ticker:hover .ticker__wrap {
	animation-play-state: paused;
}