﻿/* CSS Document */
@charset "utf-8";

#scroll_vert_container_latest_news {
	position: relative;
	width: 348px;
	height: 150px;
	overflow: hidden;
}

#scroll_vert_section_latest_news {
	position: absolute;
	display: inline-block;
	bottom: -100%;
	animation: scrollUp 10s linear infinite;
}

#scroll_vert_section_latest_news p {
	margin: 0 !important;
	font-weight: bold !important;
}

#scroll_vert_section_latest_news p:not(:last-child) {
	margin-bottom: 1em !important;
	padding-bottom: 1em !important;
	border-bottom: 1px solid gray !important;
}

@keyframes scrollUp {
	from {
		bottom: -100%;
	}

	to {
		bottom: 100%;
	}
}

@-webkit-keyframes scrollUp {
	from {
		bottom: -100%;
	}

	to {
		bottom: 100%;
	}
}

@media (max-width: 767px) {
	#scroll_vert_container_latest_news {
		width: 100%;
	}
}