﻿/* CSS Document */
@charset "utf-8";

#scroll_horiz_container_winner {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	box-sizing: border-box;
	position: relative;
}

#scroll_horiz_section_winner {
	display: inline-block;
	padding-left: 100%;
	animation: scrollHorizontally 50s linear infinite;
	font-size: 18px;
}

.top_news_scroll_text {
	font-size: large;
	font-style: italic;
	color: #131842;
	font-weight: bold;
}

@keyframes scrollHorizontally {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

@-webkit-keyframes scrollHorizontally {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}