.ticker-container {
	height: 60px;
	width: 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
	color: white;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
}

.ticker-caption span{
	top: 12px;
	font-weight: 500;
	font-size: 14px;
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	margin-left: 32px;
}

.rs_ticker.rs_ticker_hide{
	display: none;
}

.ticker-container div.rs_ticker div span{
	color: #fff;
	font-size: 14px;
}

.ticker-container div.rs_ticker div span a{
	color: #fff;
}

.ticker-container div.rs_ticker div span a:hover{
	color: #f9f9f9;
}


.ticker-container div.rs_ticker {
	list-style: none;
	padding: 0;
	height: auto;
}
.ticker-container div.rs_ticker div {
	position: absolute;
	z-index: 9999;
	display: inline;
	min-width: 100%;
	left: 0;
	height: 50%;
	transition: 0.25s ease-in-out;
}
.ticker-container div.rs_ticker div.ticker-active {
	top: 30px;
}
.ticker-container div.rs_ticker div.not-active {
	top: 60px;
}
.ticker-container div.rs_ticker div.remove {
	top: 0;
}


@media (min-width: 500px) {
	.ticker-container {
		text-align: left;
	}
	.ticker-container div.rs_ticker div {
		height: 100%;
		left: 85px;
	}
	.ticker-container div.rs_ticker div.ticker-active {
		top: 0;
	}
	.ticker-container div.rs_ticker div.not-active {
		top: 28px;
	}
	.ticker-container div.rs_ticker div.remove {
		top: -30px;
	}
}

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

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