

.ticker-container {
	height: 60px;
	width: 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
	background-color: #EEEEEE;
  color: #090909;
	/*background-color: white;
	color: black;*/

	margin-bottom: 15px;
}
.ticker-container .ticker-caption {
	height: 50%;
	width: 100%;
	/* background-color: #ac2b4d; */
	display: table;
	position: absolute;
	color: white;
	/* font-size: 0.8em; */
	/* z-index: 1; */
	line-height: 1.5;
}



.ticker-container .ticker-caption p {
	height: inherit;
	width: inherit;
	display: table-cell;
	vertical-align: middle;
	font-weight: 700;
	/* font-size: 26px; */
	z-index: 9999;
	position: absolute;
	line-height: 2.5;
}
.ticker-container ul {
	list-style: none;
	padding: 0;
	height: auto;
}
.ticker-container ul 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 ul div.ticker-active {
	top: 30px;
}
.ticker-container ul div.not-active {
	top: 60px;
}
.ticker-container ul div.remove {
	top: 0;
}
.ticker-container ul div li {
	padding: 5px 10px;
}
.ticker-container ul div li a {
	color: #090909;
}

@media (min-width: 500px) {
	.ticker-container {
		height: 35px;
		text-align: left;
	}
	.ticker-container .ticker-caption {
		height: 100%;
		width: 110px;
	}
	.ticker-container .ticker-caption p {
		text-align: left;
		padding-left: 10px;
		/* font-size: 14px; */
	}
	.ticker-container ul {
		margin-left: 170px;
		height: 100%;
	}
	.ticker-container ul div {
		height: 100%;
		left: 170px;
	}
	.ticker-container ul div.ticker-active {
		top: 0;
	}
	.ticker-container ul div.not-active {
		top: 30px;
	}
	.ticker-container ul div.remove {
		top: -30px;
	}
}

@media (min-width: 768px) {
  .ticker-container {
    margin-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .ticker-container {
    margin-bottom: 25px;
  }
}




  .ticker-caption:before {
    background: #ac2b4d;
    content: "";
    position: absolute;
    top: 0px;
    left: 7px;
    height: 50%;
    width: 101%;
    /*border-radius: 0px 10px 6px 0px; */
    -webkit-transform: skew(45deg);
    -moz-transform: skew(45deg);
    transform: skew(45deg);
}

.ticker-caption:after {
    background: #ac2b4d;
    content: "";
    position: absolute;
    bottom: 0px;
    left: 8px;
    height: 50%;
    width: 100%;
    /* border-radius: 0px 6px 10px 0px; */
    -webkit-transform: skew(-45deg);
    -moz-transform: skew(-45deg);
    transform: skew(-45deg);
}

.ticker-caption {
    position: relative;
    background: #ac2b4d;
    height: 45px;
    /* width: 10%; */
    /* z-index: 999; */
}