.ticker-container {
	height: 60px;
	width: 100%;
	text-align: left;
	position: relative;
	overflow: hidden;
	background-color: rgb(215, 215, 215);
	color: #0d2649;
	font-size: 13px;
	margin-bottom: 15px;
	border-radius: 40px;
	border: 2px solid #62758e;
}

.ticker-container .ticker-caption {
	height: 100%;
	width: 150px;
	background-color: #0d2649;
	display: table;
	position: absolute;
	color: white;
	font-size: 13px;
	z-index: 1;
}

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

.ticker-container ul {
	height: 100%;
}

@media (max-width: 767px) {
	.ticker-container {
		border-radius: 5px;
	}
	
	.ticker-container .ticker-caption {
		height: 50%;
		width: 100%;
	}
	
	.ticker-container .ticker-caption p {
		text-align: center;
		padding-left: 15px;
	}
	
	.marquee{
		position: relative;
		overflow: hidden;
		height: 20px;
		margin: 35px 0 0 0;
		list-style-type: none;
		
	}

	.marquee ul li{
		position: absolute;
		list-style-type: none;
		width: 500px;
	}
	

}

	


