* {
	margin: 0;
	padding: 0;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.ticker-container {
	height: 30px;
	width: 100%;
	text-align: left;
	position: relative;
	overflow: hidden;
	background-color: #1f2a44;
	color: white;
	font-size: 14px;
	margin-bottom: 15px;
	border-radius: 10px;
}

.ticker-container .ticker-caption {
	height: 100%;
	width: 150px;
	background: #ec0b43;
	display: table;
	position: absolute;
	color: white;
	font-size: 13px;
	z-index: 2;
	border-radius: 10px 0 0 10px;
}

.ticker-container .ticker-caption p {
	height: inherit;
	width: inherit;
	display: table-cell;
	vertical-align: middle;
	padding-left: 10px;
	font-weight: bold;
}

.ticker-container ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 0 0 170px !important;
	height: 100%;
	overflow: hidden;
}

.ticker-container ul div {
	overflow: hidden;
	position: absolute;
	z-index: 1;
	display: block;
	min-width: calc(100% - 170px);
	left: 170px;
	height: 100%;
	line-height: 30px;
	transition: 0.25s ease-in-out;
}

.ticker-container ul div.ticker-active {
	top: 0;
}

.ticker-container ul div.not-active {
	top: 30px;
}

.ticker-container ul div.remove {
	top: -30px;
}

.ticker-container ul div li {
	list-style: none !important;
	padding: 0;
	margin: 0;
}

.ticker-container ul div li span {
	display: block;
	white-space: nowrap;
	color: white;
}

@media (max-width:500px){
	.ticker-container .ticker-caption{
		width:120px;
	}

	.ticker-container ul{
		margin-left:130px !important;
	}

	.ticker-container ul div{
		left:130px;
	}
}