

.ticker-container {
	height: 60px;
	width: 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
	background-color: #e40613;
	color: white;
	/*background-color: white;
	color: black;*/
	font-size: 20px;
	margin-bottom: 0px;
}

	.ticker-container .ticker-caption p {
		height: inherit;
		width: inherit;
		display: table-cell;
		vertical-align: middle;
		font-weight: bold;
	}

.ticker-container {
	list-style: none;
	padding: 0;
	height: auto;
}

	.ticker-container div {
		overflow: hidden;
		position: absolute;
		z-index: 0;
		display: inline;
		min-width: 100%;
		left: 0;
		height: 50%;
		transition: 0.25s ease-in-out;
	}

		.ticker-container div.ticker-active {
			top: 30px;
		}

		.ticker-container div.not-active {
			top: 60px;
		}

		.ticker-container div.remove {
			top: 0;
		}

	.ticker-container div {
		padding: 5px 0;
	}

		.ticker-container div a {
			color: #FFFFFF;
		}

@media (min-width: 500px) {
	.ticker-container {
		height: 40px;
		text-align: center;
	}

	.ticker-container {
		margin-left: 170px;
		height: 100%;
	}

		.ticker-container div {
			height: 100%;
			left: 0px;
		}

			.ticker-container div.ticker-active {
				top: 0;
			}

			.ticker-container div.not-active {
				top: 30px;
			}

			.ticker-container div.remove {
				top: -30px;
			}
}

@media (min-width: 768px) {
	.ticker-container {
		margin-bottom: 0px;
	}
}

@media (min-width: 992px) {
	.ticker-container {
		margin-bottom: 0px;
	}
}
